Tip 1 : Solve atleast 2 3 questions daily
Tip 2 : Consistency is the key
Tip 3 : Once done with solving questions on leetcode questions, try giving contests
Tip 4 : Do some projects which will help to understand development of application from scratch to deployment on cloud.
Tip 5 : Try to add some cloud certification if possible
Tip 1 : Try to make single page resume
Tip 2 : Mention your skill set clearly and experience count
First round is basically about Coding round and resume .
Easy to medium leetcode questions are usually asked



The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
Two pointer approach was used to compare both the iterators and merge them



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Did using stack approach. Compared the closing bracket in string with element in stack and pop the top from stack.
If stack empty then valid string
Basically motive is to get your thought process when you are asked to design an application. Mostly it is LLD.
Interviewer will provide ample hints and try to move in right direction.
Design a chat bot
Tip 1 : Provide functional and non functional req clearly
Tip 2 : write.all.your assumptions
Tip 3 : Clearly describe the database schema
This is more of a managerial round and a fitment round.
They usually ask scenario based questions
Why should we hire you?
What keeps you motivated?

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?