I applied through other source. I interviewed at Amazon (Mumbai) in May 2025
Interview
Result hasn't come yet.. Waiting for interview.. Oa was on hacker rank 2 coding question were there and then behavioral questions were there I gave oa 2 times first oa was also very difficult .. I am too much stressed
process:
phone screening -> 3 rounds of interviews back to back (interview loop) -> result
interviewers were very nice, very happy to answer questions about their career development. was given leetcode style problems in phone screening + loop. loop consisted of systems design, leetcode, behavioural. systems design question was “design a file management system”.
Interview questions [1]
Question 1
- systems design: design a file management system
- leetcode: implement autocorrect from a known list of frequently used words
- behavioural: tell me about a time where you disagreed with a team member
1. Orange Cutting (Grid Simulation / BFS-Style) — 40 words
Given an m×n grid where each cell has an orange with size. Cutting horizontally or vertically splits it into smaller valid pieces. Return the minimum number of cuts to make all pieces ≤ k. Use BFS/DP over states tracking segment sizes.
2. Priority Queue Scheduling — 40 words
You get tasks with arrival time and processing time. Only one task runs at a time; always pick available task with smallest processing time using a min-heap. Return order of execution. Use sorting + priority queue
Interview questions [1]
Question 1
1. Orange Cutting (Grid Simulation / BFS-Style) — 40 words
Given an m×n grid where each cell has an orange with size. Cutting horizontally or vertically splits it into smaller valid pieces. Return the minimum number of cuts to make all pieces ≤ k. Use BFS/DP over states tracking segment sizes.
2. Priority Queue Scheduling — 40 words
You get tasks with arrival time and processing time. Only one task runs at a time; always pick available task with smallest processing time using a min-heap. Return order of execution. Use sorting + priority queue