Amazon SDE-1 Interview Experience

amazon logo
amazon
· SDE-1
April 20, 2026 · 0 reads

Summary

I completed the Amazon SDE-1 interview process in April 2026, which included an online assessment, multiple onsite rounds covering DSA, system design, and behavioral questions.

Full Experience

Amazon SDE Interview Experience (April 2026)

Online Assessment (OA)

  • Coding: 2 Medium–Hard DSA questions

Round 1: DSA (Onsite) – 6th April 2026 (1 hour)

  1. Search in a Sorted and Rotated Array https://leetcode.com/problems/search-in-rotated-sorted-array/

  2. Variation of Kadane’s Algorithm

    • Given a circular (rotated) array, find the maximum subarray sum.

Round 2: DSA + Project Discussion (Onsite) – 6th April 2026 (1 hour)

  • First 10 minutes: Discussion about my work experience.

DSA Questions:

  1. Given an array and an integer k, find the maximum subarray sum from index i to j such that: |a[i] - a[j]| = k

  2. Number of Islands https://leetcode.com/problems/number-of-islands/

  • Behavioral: 5 questions based on Amazon Leadership Principles.

Round 3: Hiring Manager (Gen-AI Focus) – Onsite – 6th April 2026 (1 hour)

  • First 15 minutes: Discussion on:

    • Usage of Generative AI tools
    • Experience working with AI tools
    • How do I verify the correctness of code generated by Gen-AI

DSA Question:

  1. Lowest Common Ancestor of a Binary Tree https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/

System Design:

  1. Design a system to schedule processes.

Round 4: Bar Raiser (Leadership Principles Focus) – Virtual – 14th April 2026 (1 hour)

  • This round focused entirely on Leadership Principles (no technical questions).

Behavioral Questions:

  • A situation where I had to deep dive into a problem (with follow-up questions)
  • A situation where I had to convince someone of my approach
  • Two additional Leadership Principles-based questions

Overall Experience

The interview process was well-structured and covered:

  • Strong DSA fundamentals
  • Problem-solving ability
  • System design basics
  • Real-world project discussion
  • Leadership Principles and behavioral skills
  • Awareness and practical usage of Generative AI

Interview Questions (6)

1.

Search in Rotated Sorted Array

Data Structures & Algorithms·Medium

Find the index of a target value in a sorted array that has been rotated at an unknown pivot. Return -1 if the target is not found.

2.

Maximum Subarray Sum in Circular Array (Kadane Variant)

Data Structures & Algorithms

Given a circular (rotated) array, find the maximum subarray sum.

3.

Maximum Subarray Sum with Absolute Difference Constraint

Data Structures & Algorithms

Given an array and an integer k, find the maximum subarray sum from index i to j such that |a[i] - a[j]| = k.

4.

Number of Islands

Data Structures & Algorithms·Medium

Given a 2D grid of '1's (land) and '0's (water), count the number of distinct islands. An island is formed by connecting adjacent lands horizontally or vertically.

5.

Lowest Common Ancestor of a Binary Tree

Data Structures & Algorithms·Medium

Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.

6.

Process Scheduling System Design

System Design

Design a system to schedule processes, handling aspects such as queue management, priority handling, and scalability.

📣 Found this helpful? Please share it with friends who are preparing for interviews!

Discussion (0)

Share your thoughts and ask questions

Join the Discussion

Sign in with Google to share your thoughts and ask questions

No comments yet

Be the first to share your thoughts and start the discussion!