Tip 1 : Solve all standard DSA problems
Tip 2 : Prepare for System Design as for AE role Google take one SD round interview
Tip 3 : Competitive Programming will help to clear Google OA
Tip 1 : Good to have 2 decent projects
Tip 2 : Good Coding profiles help as well
The first round was an online Assessment round of one hour in which 2 DSA (both were hard) was asked.



If there are multiple solutions of a string, return the string with minimum total length.
Let str = abaccce
Now In this example, we can make a maximum of three substrings i.e. {‘b’, ‘ccc’, ‘e’}.
There can be one more solution with maximum substrings equal to three i.e. {‘aba’, ‘ccc’, ‘e’} but we have to select the substrings with minimum total length. So the final answer is {‘b’, ‘ccc’, ‘e’}.



For N = 3 one valid array is [3,1,2,1,3,2].
The first interview round was DSA and I was asked one medium DSA question (45 mins)



There are three occurrences of the word 'NINJA' in the following grid:

1) Given word will not be a single character.
2) If occurrences of the given word start from two different cells, then these two occurrences are considered to be different.
Consider the word 'XYX' to be searched in the string 'AXYXB'. Here, we find an occurrence of 'XYX' at index 2 going in the right direction, and another occurrence at index 4 going in the left direction.
Although these two words correspond to the same word, they will be considered as different occurrences.
After the introduction, He asked me to design a flight booking system. It was more like a discussion round. We first discussed the low-level design and He asked me to write the class structure of some components then He asked me some questions regarding APIs and Finally some questions regarding High-level Design.
I struggled on a few occasions in this round but communication helped me to fix the mistakes.
Design a flight booking system (low level + High level)
Tip 1 : Understand the functionalities and use case
Tip 2 : Discuss the approach and focus the interviewer's inputs
Tip 3 : Keep the design simple

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?