Amazon #SDE 2021 Phone Interview Experience (See BQ tips below) #AmazonInterview #SoftwareEngineer

preview_player
Показать описание
07:26 Frequently Asked Amazon Algorithm Questions

********************************************************************************
Amazon OA 2022 Questions ********************************************************************************
Amazon OA 2022 Questions

********************************************************************************
Top interview BQ questions ********************************************************************************
Top 5 Questions to Ask Interviewer

17 Best Questions to Ask Your Interviewer (With Video Examples)

22 Questions Asked in 94% Amazon Interviews


********************************************************************************
Your Strengths and Weaknesses
********************************************************************************
Interview Question: "What Are Your Strengths and Weaknesses?"

********************************************************************************
14 Leadership Principles
********************************************************************************

********************************************************************************
How to cope with conflict
********************************************************************************
How to Handle Conflict in the Workplace

4 Steps to Take When Handling Conflict With Your Co-Worker

How Do You Handle Conflict in the Workplace?

9 Ways to Mediate Conflict in the Workplace

********************************************************************************
Tight Deadlines
********************************************************************************
How to Handle Tight Deadlines and Maintain High Standards of Work

Interview Question: How Do You Work Under the Pressure of Tight Deadlines?

********************************************************************************
Tough Decisions
********************************************************************************
12 Ways to Make Hard Decisions Easier

How to Make a Difficult Decision: 30 Ideas to Help You Choose

7 Questions You Should Ask Yourself When Faced With A Tough Decision In Life

5 TIPS FOR MAKING TOUGH DECISIONS AT WORK
Рекомендации по теме
Комментарии
Автор

老铁 这题用hash map做就🉑️了

function getIndicesOfItemWeights(arr, limit):
m = new Map()

for index from 0 to arr.length - 1:
w = arr[index]
complementIndex = m.findKey(limit - w)
if (complementIndex != null):
return [index, complementIndex]
else:
m.insert(w, index)

return null

weipengwang
Автор

Thanks!!!
where can we find the leet code list ?

danielderese
Автор

had an amazon senior recruiter asked me to apply to be a sde on linkedin. sent me a coding challenge on hacker rank which i ignored for months. today got a message from him again asking when i can have it completed. I told him i decided to withdraw my application, then ask me if any chance i would reconsider. go find someone else. you are multibillion dollar company, you dont need me onboard.

IamAWESOME