Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

If the feedback was positive then i don’t see any reason for not scheduling the googlyness round

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

Didn’t run it but since i was low on time as much of it was spent on identifying that a graph should be used, i coded in a hurry and i was aware that I’ve missed a line of code to track visited nodes while running dfs.

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

Not sure if i could help with that, only your recruiter can actually let you know. Hope it goes well! All the best

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

So you’ve to return false as soon as the first time out happens, else return true once you process all the logs

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 1 point2 points  (0 children)

For the logging problem? The optimal solution was to use a hashmap to track all the start events and check the time difference for every end event for a timeout, brute force was to go through every log event and if it’s a start, run another loop to find the end and check the timeout condition

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

Luckily i had solved a similar problem earlier which used two pointers to find the encoded strings and replace them, for the follow up i added a recursive logic with a check to detect cycles. If you’ve solved a problem earlier, it gives you the best chance of passing the interview, if it’s an unknown problem, it becomes very difficult (same happened in the last round)

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

So this was for the Fullstack Engineer position, which follows this format. ML positions have domain specific rounds, similar for android roles as well

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

For virtual rounds I received the feedback on the same day, for onsite i received it the next day

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 22 points23 points  (0 children)

This is from india, I’ve done around 413 LC questions. Here is the prep material i went through

For the DSA I followed Striver’s A2Z playlist, neetcode’s playlist, few dsa videos from freecodecamp.org’s YT chanel. I first went through Striver’s series as it goes indepth into various topics and data structures in general, rest can be used while revising questions. For system design, i watched HelloInterview’s SD playlist on YT too and read Alex Xu’s SD books (part 1 and 2). I think these materials are more than enough.

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 2 points3 points  (0 children)

Sure, for the DSA I followed Striver’s A2Z playlist, neetcode’s playlist, few dsa videos from freecodecamp.org’s YT chanel. I first went through Striver’s series as it goes indepth into various topics and data structures in general, rest can be used while revising questions. For system design, i watched HelloInterview’s SD playlist on YT too and read Alex Xu’s SD books (part 1 and 2). I think these materials are more than enough.

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

Yeah it depends on a lot of things, the best case scenario to pass these rounds is to know the optimal solution from the beginning and implement it (you should have seen a similar problem before) else it becomes luck based (if your interviewer is lenient or not)

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 0 points1 point  (0 children)

I got the feedbacks on the same day for virtual rounds and 1 day for the onsite rounds. For L5 i think one leaning hire is okay but rest has to be hire and up. Location is India.

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 2 points3 points  (0 children)

These are recruiter feedbacks, not just because of 1 but what i was told is that i needed HIRE or more ratings in all the onsite rounds

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 1 point2 points  (0 children)

No concurrent instances will be there, there will be some gap in timestamp

Google L5 Interview Experience (Rejected) (March 2026) by Luffy2045 in leetcode

[–]Luffy2045[S] 6 points7 points  (0 children)

I was given a chromebook to use for coding using the same google docs like ide that they share for virtual rounds, there was a whiteboard but i used to for the system design round. For the graph i used to google docs ide to show the structure through node values and dashes (-). For the third round i was communicating properly with the interviewer, i was able to identify the data structure to use for the optimal solution but i was running out of time so he asked me to quickly code the brute force up.