Amazon Interview | Set 76 (For SDE-1) Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report Hello Guys, I was recently interviewed by Amazon for SDE-1 position. Following is my interview experience. Round-1 (Written on InterviewStreet) 1. Rotate a N*M matrix 90 degrees clockwise 2. Given a string find the repeated characters and print them in lexicographical order. e.g i/p string- "ABCCAD" o/p-"AC" 3. Given a binary tree, find the k-th largest element 4. Convert Binary tree to DLL Round 2 (Telephonic) 1. Given an MxN array, in which the rows are sorted. Need to sort the complete array Round 3 (F2F) 1. Spiral Level order traversal of Binary tree 2. Given a huge file 100 million integers. He further divided the file to 100 files with 1 million integers each. Each file is sorted. Find the efficient way to find smallest 'm' integers. Note 'm' is very less in comparison to a million 3. Given sorted & rotated array find the index of given integer Round 4 (F2F) 1. Given a Binary Tree and a sum k.Print all the paths with sum = k. Path can or cannot start with root 2. Reverse k elements of linked list 3. Given a 2D array find the maximum sum rectangle 4. Given a list of n mp3 songs. Play them randomly. No song should repeat until all the others are played. Round 5 (F2F with Development Manager) 1. Tell me about yourself and the projects done in previous company. A discussion on those projects followed. 2. Why do you want to leave your previous company 3. Given a binary tree 1 / \ 2 3 / \ / \ 4 5 6 / \ / \ / \ 7 8 9 10 Needed to connect the nodes vertically 1 / | \ 2 | 3 / | \ | / | \ 4 | 5 | 6 / \ | / \ | / \ 7 8 9 10 Assume each tree node has an additional pointer (struct node* vertical) Round 6 (F2F) 1. Given stock price of Amazon for some consecutive days. Need to find the maximum span of each day's stock price. Span is the amount of days before the given day where the stock price is less than that of given day E.g i/p = {2,4,6,9,5,1} o/p= { -1,1,2,3,2,-1} 2. Given a Binary tree each node should contain the sum of left and right subtrees. Leaf nodes will become 0 in the resulting tree. Round 7 (F2F with Project Development Manager) 1. Tell me something about yourself 2. Tell me about your previous company and projects 3. Why do you want to leave the previous company in such a small time. Finally got the offer after few days Tips:- Be clear to the interviewer, the are quite helpful. Try to discuss the various approaches that come up in your mind if you are struck somewhere. All the best.!! All Practice Problems for Amazon ! Comment More infoAdvertise with us Next Article Amazon Interview | Set 75 (For SDE-1) Anonymous Improve Article Tags : Interview Experiences Experiences Amazon Practice Tags : Amazon Similar Reads Amazon Interview | Set 75 (For SDE-1) I am currently in my 8th semester . I recently attended the off campus drive for SDE1 at Amazon. Here's my journey. Round 1:- (Written) This was a written round . It was hosted on interview street. It was a 90 minutes test with 20 mcq and 2 codes 1> Return the longest palindromic substring in a stri 4 min read Amazon Interview | Set 68 (For SDE-1) I went through the Amazon interview process for SDE-1, I didn't make it past the 3rd F2F round. Online Round: 1. Find if a given string contains duplicates 2. Given a BST, find the maximum N elements of the tree 3. Given a BST, convert it into Doubly Linked List 4. Rotate a 2-D Matrix by 90 degrees 2 min read Amazon Interview | Set 62 (For SDE-1) I recently went through the Amazon interview process for the post of SDE-1. Round 1 (Written) 1. Given an array, output an array where every index conains nearest greatest element to that element on right side. 2. Program to convert sorted array to Binary Search Tree 3. Find first non-repeating char 2 min read Amazon Interview | Set 63 (For SDE-1) I have a total experience of two years. I am sharing my interview experience with Amazon. This is for SDE1 Amazon. A very big thanks to whole team of geeks for geeks. It is because of them only that I was able to make Amazon and get a job in my dream company. Otherwise it was impossible for me. The 1 min read Amazon Interview | Set 79 (For SDE-1) I have 8 months of experience and I recently appeared for interview of Amazon for role of SDE-I. Written Round: Q1: Convert a binary tree to DLL. Q2: Given a random node address in Singly linked list. Delete that node. You need to write full code in the language of any choice with all the edge cases 3 min read Amazon Interview | Set 73 (For SDE-1) I have been interviewed for SDE1 by amazon. Here are the questions. 1st Round - Online Coding 1. Contiguous elements in an array whose sum is k. 2. Convert sorted array to binary search tree. 2nd Round - Telephonic 1. Implement stack with Push, Pop, GetMin and GetMax in constant time. Algo + Code 2. 3 min read Like