Amagi Media Labs – Interview Experience || SDE2
Summary
I interviewed for the Software Development Engineer 2 role at Amagi Media Labs and was selected after 4 rounds, receiving an offer of 28 LPA fixed.
Full Experience
Previous :
- Infosys Ltd
- Role: Spealist Programmer (L2)
- Comp: 15.85 LPA
Role: Software Development Engineer 2
Experience Level: 4 Years
Offered CTC: 28 LPA Fixed
Verdict: Selected
Round 1
- Linked List Cycle II
- Count Collisions on a Road
- OS Questions
Round 2
- Graph-related question (exact question not remembered)
- OS Questions
Round 3
- System Design questions
- OS Questions
Round 4
- Standard HR questions
Interview Questions (2)
Linked List Cycle II
Given the head of a singly linked list, return the node where the cycle begins. If there is no cycle, return null.
Count Collisions on a Road
You are given a 0-indexed string directions of length n which represents the initial directions of n cars on an infinite number line. directions[i] can be 'L' (moving left), 'R' (moving right), or 'S' (stationary). All cars move at the same speed. When two cars moving in opposite directions meet, they both become stationary. When a moving car meets a stationary car, it also becomes stationary. After a collision, all involved cars become stationary. Return the total number of collisions that happen on the road.