Tip 1: Reading others' interview experiences is one of the best ways to get yourselves ready for the next job interview. Practice daily with at least 5 questions.
Tip 2: Most commonly asked topics in Google interviews (as per the mail I received from my recruiter) are:
Tip 1: Mention your past working experience in detail, highlighting how you were important to your previous company.
Tip 2: Try to keep your resume to one page if your work experience is less than 5 years.
Tip 3: Update your resume according to the role you are applying for, and never include false information on your resume.



1) Subtract 1 from it. (n = n - 1) ,
2) If n is divisible by 2, divide by 2.( if n % 2 == 0, then n = n / 2 ) ,
3) If n is divisible by 3, divide by 3. (if n % 3 == 0, then n = n / 3 ).
Given:
‘N’ = 4, it will take 2 steps to reduce it to 1, i.e., first divide it by 2 giving 2 and then subtract 1, giving 1.
DP problem



A substring is a contiguous segment of a string.
DP concept
The round was held on Google Meet, and I was given two coding problems. For each problem, I first had to explain my approach, then write the code in a shared Google Doc, dry run the code on sample test cases, and discuss the time and space complexity. There were two interviewers, both of whom were very friendly and helpful, and they tried to bring us to our comfort level first.



The strings are non-empty.
The strings only contain lowercase English letters.
Kandane's algo. (Learn)



[2,3,4] - median is 3.
[2,3] - median is floor((2+3)/2) = 2.
Applied Heap technique to solve this problem.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?