Lowes India Round 1
January 18, 2025 • 1 reads
Summary
I recently interviewed for Lowes India, completing the first round where I was asked two data structure and algorithm problems.
Full Experience
I appeared for the first round of interviews at Lowes India. This round primarily focused on my coding skills, presenting me with two algorithmic challenges that I had to solve. The problems were straightforward and tested fundamental array manipulation and string processing abilities.
Interview Questions (2)
Q1
Squares of a Sorted Array
Data Structures & AlgorithmsEasy
Write a method which takes a sorted integer array and returns a new array with the squares of each number, also in sorted order.
Q2
Check if Reverse Substring Exists
Data Structures & AlgorithmsEasy
Write a method that takes two strings, s1 and s2, and checks if the reverse of s2 exists as a substring within s1.