Full Stack Software Developer Interview Questions

1,668 full stack software developer interview questions shared by candidates

DSA and React Debugging round : Question on String with Backtracking. Major discussion was on approach and then space/time complexity. Mathematical proof for same was discussed. For react debugging, a problem statement about photo rotation was discussed. Google search was allowed in the round.
avatar

Software Engineer - Full Stack

Interviewed at Morphle Technologies

4.3
Aug 20, 2024

DSA and React Debugging round : Question on String with Backtracking. Major discussion was on approach and then space/time complexity. Mathematical proof for same was discussed. For react debugging, a problem statement about photo rotation was discussed. Google search was allowed in the round.

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Note: the solution set must not contain duplicate triplets. Input: nums = [-1,0,1,2,-1,-4] Output: [[-1,-1,2],[-1,0,1]] Explanation: nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0. nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0. nums[0] + nums[3] + nums[4] = (-1) + 2 + (-1) = 0. The distinct triplets are [-1,0,1] and [-1,-1,2].
avatar

Full Stack Software Engineer

Interviewed at Costco Wholesale

3.9
Jul 16, 2024

Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Note: the solution set must not contain duplicate triplets. Input: nums = [-1,0,1,2,-1,-4] Output: [[-1,-1,2],[-1,0,1]] Explanation: nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0. nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0. nums[0] + nums[3] + nums[4] = (-1) + 2 + (-1) = 0. The distinct triplets are [-1,0,1] and [-1,-1,2].

Viewing 611 - 620 interview questions

Glassdoor has 1,668 interview questions and reports from Full stack software developer interviews. Prepare for your interview. Get hired. Love your job.