I applied through other source. The process took 1 day. I interviewed at Amazon (Seattle, WA) in Jan 2012
Interview
I was contacted by Amazon from linkedin. They want to know if I am interested to go to sydney for their hiring event. I said I can't go to sydney because I live in Brisbane and told them that my strength is in .Net and Amazon does not hire .Net programmer but she told me that it is ok. So I accepted to have the normal method of interview.
We had a few emails back and forth and the lady from Amazon was quick to respond my emails (usually a few hours). First step was a coding exercise. Usually initial coding exercises are easy and are designed to see if the interviewee can write code at all.
So she sent me the question and I had three hours to finish it. The question was: given an array of ints, find the sum of most common repeated number. For example {4,2,3,1,8,3} should return 3+3 = 6. I had to give two answers one with least time complexity and one with least space complexity. So I implemented the typical answers using a hashmap, or the naive one with O(1) space complexity and one extra using sort.
I unit tested and documented all my code properly, also had time to write a performance test and document how to parallelize any of the algorithms.
Its been a while since I sent them the answer but I received no response. The lady who was quick to reply to my emails also did not reply to my follow up email! It is really disrespectful, asking someone to sit for a test and totally ignoring him after that! Even if my code have been terrible and the guy has had a heart attack after seeing it they could tell me that sorry, we don't want to go further! It wasn't me chasing them after all.
After about a week and two follow ups, I have been said that they were trying to contact me trough another email. However I scheduled a phone interview and fingers crossed on that.
Interview questions [1]
Question 1
Given an array of int, find sum of the most common int.
It started with an OA, and then after a few weeks, I got invited to four rounds of interviews: technical and behavioral at 3 of the 4, and behavioral only at one.
I applied online. I interviewed at Amazon (São Paulo, São Paulo) in Jun 2026
Interview
Empresa extremamente clara sobre o que é pedido na entrevista e isso me mostra a seriedade. Minha experiencia foi positiva e tente se atentar a resolver o problema e não somente decorar padrões do leetcode.
Interview questions [1]
Question 1
Perguntas em ingles que envolve o STAR e testes técnicos
I applied online. I interviewed at Amazon (Calgary, AB) in Jun 2026
Interview
Online Assessment is the first step in the process. I didn’t have an HR phone screening and went straight to the OA after applying. It was sent to me about a week after I submitted my application.
Interview questions [1]
Question 1
The first question is LeetCode style algorithms question, and the second question gives a full stack repo (choice of Java, NodeJS, or Django) and asks to solve a backend issue which is causing a bug in the frontend. Unit tests must pass to pass the second question. You can run both backend/frontend indivdually or together