Amazon | SDE-1
Summary
I experienced an SDE-1 interview at Amazon, which included an online assessment with two questions and an interview round with two specific algorithmic problems.
Full Experience
Amazon SDE-1 interview experience: OA-> 2 questions one is given a binary string, convert it to string such that there is no subsequence as 101 or 010. Another is Leetcode hard level. Interview-> 1)sliding window maximum 2) decode ways
Interview Questions (3)
Convert Binary String to Remove 101/010 Subsequences
Given a binary string, convert it to a string such that there is no subsequence '101' or '010'.
Sliding Window Maximum
Implement the Sliding Window Maximum algorithm.
Decode Ways
Implement the Decode Ways algorithm.