Backend Engineer | Zenskar
JP Morgan Chase | SDE 3 | YOE 3.4
Microsoft SDE - 2 | Interview Experience | Status Pending
eBay || SWE3 Interview Experience || Bangalore
Bloomberg | Interview Experience | Senior Software Engineer | NYC | Nov 2025
Myntra - SDE1 - 2 YoE - Interview Experience
Summary
I interviewed for an SDE1 role at Myntra, which involved a technical round that covered project discussions and two Data Structures and Algorithms problems.
Full Experience
My interview process at Myntra for the SDE1 position consisted of a single technical round. The interviewer started by asking for my introduction, then we delved into a detailed discussion about my past projects. After that, I was presented with two DSA problems to solve.
Interview Questions (2)
Given an array of intervals, merge all overlapping intervals, and return an array of the non-overlapping intervals that cover all the intervals in the input.
Given the root of a binary tree, where each node in the tree has a distinct value, and a list of values to_delete. The goal is to delete all the nodes with values in to_delete. After deleting a node, if it has any children, those children become the roots of new trees. The task is to return a list of the roots of the trees in the final forest. (Leetcode 1110)