Amazon SDE II interview

Title Template

[Company Name] - [Job Title] - [Stage]
Amazon
Description Template:
Level: [What level you were interviewing for] SDE II
Education: [Education Level] Master
Years of Experience: [YOE] 4
Questions Asked: [List of Questions Asked]
Four rounds of interview finished in one day, each round was a combination of half algorithm and half behaviral.

  1. first round: edit distance
  2. second round: step by step building a tree from 0
  3. third round: find how many island (on leetcode)
  4. forth round: make the tree has the bigest value when each level has different weight.

IMPORTANT: Remember to specify the company name & role in the tags

Example:
Title:
Google - Software Engineer (Frontend) - Phone Screen

Description:
Education: Masters
Years of Experience (YOE): 7
Questions Asked:
Two Sum Problem:
Example 1:
2.Input: nums = [2,7,11,15], target = 9*
3.Output: [0,1]*
4.Explanation: nums[0] + nums[1] == 9, thus the output is [0, 1].*
Example 2:
5.Input: nums = [3,2,4], target = 6*
6.Output: [1,2]*