Bloomberg - Pune (India) | SSE | Interview R1 | Techincal Screening | 24th Dec 2025
Salesforce | MTS | Selected
LinkedIn SWE Infra Interview experience
Google L4 Interview Experience & Timeline
TCS Digital Interview Experience (TCS NQT Priority Hiring)
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)