Google L5 Reject -- Bengaluru -- Ph.D.
Anonymous User
1083

Hello Everyone.

I am sharing my interview experience at Google Bengaluru. Distributed learning team (Berlin HQ), MLOps role. I was contacted by a recruiter in the month of February.

Telephonic Interview

Nice and humble interviwerer. I got stuck at one point, where she pointed out an errornous assumption I was making.

Question.

Given two strings and , where , find the minimal substring in such that can be constructed by picking letters from one or more times. Return the first and (last - 1) index of the string in .

How I solved.

String Manipulation -> substring window
DP Approach -> 
Suffix Tries -> Largest suffix to ignore.

Verdict

Hire

Round-1 Interview

Question.

Given an array of numbers, where , find the largest subarray with sum, such that where, is the size of the array.

How I solved.

Verdict

Strong Hire

Round-2 Interview

Question.

Similar to House Robber - III.

How I solved.

Verdict

Strong Hire

Round-3 Interview

Question.

LRU Cache implementation with a tweak.

How I solved.

Verdict

Lean

Round-4 Interview

Interviewer was in a hurry. Gave vague constraints. He asked my what was the motivation to do a Ph.D. in computer science?

Question.

Given a matrix of size , Find the largest submatrix of size such that the sum over rows equals sum over columns and the total sum is less that .

How I solved.

2D Array + DP
Direction vectors

Verdict

Reject

Comments (5)