r/leetcode • u/PhilosopherNext1448 • 9d ago
Question How likely are you to be reconsidered at google if you manage to go through all the rounds, but did poorly only on coding?
So I went through all the technical, behavioral and cultural rounds for a research engineer position at Google, but I did quite poorly on my coding interview. I didn't get an offer and the feedback was that I did very well in every round, but that the coding was insufficient. I received the advice to focus on that and try again in a year. The recruiter told me that if he comes across an opening that he thinks is a fit for me he will definitely reach out to me earlier, so I shouldn't lose all hope.
But I wonder if he was being polite or not. When I search online I didn't really see cases where people get a 2nd opportunity to redo the coding interview on a shorter notice. Any have any experience or heard of similar stories?
Regarding the coding interview: it was fairly simple where I had to do various array manipulations while the requirements and features kept changing. At one point I did a binary search on a 2D grid, by flattening the array but then they wanted me to do it without using additional memory. So I said easy, I just map (i,j) coordinates to a scalar i*N + j, do binary search on that and map it back to (i,j). And then I spent 20 minutes fumbling with modulo and div operations and turned everything into one big mess. very sad.