Amazon - SWE1 (L4)
Anonymous User
2227

Hello Community,

105 min total, 2 questions to code on HackerRank:

  1. https://leetcode.com/problems/k-closest-points-to-origin/
  2. Explain your approach and time complexity.
  3. https://leetcode.com/discuss/interview-question/373202
  4. Explain your approach and time complexity.

...A few minutes of waiting while page loads outside HackerRank...

  1. Work style survey (1 section) - 15 minutes.
    Just a survey where you need to select an answer that describes you better.
    No special preparations needed for this one.

Best of luck everyone!
I will try to update if/when I get news.

function updatePostOnLeetcode(news, step) {
	if (news === "Moving to a new step!") {
		return "Yay, community, they move forward with my application to a: " + step;
	} else {
		return "Still waiting...";
	}
}

updatePostOnLeetcode(null, null);
> Still waiting...
 

updatePostOnLeetcode("Moving to a new step!", "virtual onsite");
> Yay, community, they move forward with my application to a: " + virtual onsite;
Comments (3)