Tip 1 : Do Leetcode/Code studio
Tip 2 : Prepare your resume well and composed
Tip 3 : Practice your aptitude and HR questions beforehand
Tip 1 : Shouldn't exceed 2 pages
Tip 2 : Make sure that you don't include too many certifications or skills
Two batches of 10 students each were formed. One batch had their MC round from 10:00 AM to 11:45 AM and the second batch from 10:30 AM to 12:15 PM. I was in the second batch. Google meet link was shared. It was common for all the members of a particular batch. There were 10 candidates, Coordinators, HR, and Technical Team members. One coding question along with some other technical questions was asked.



1. The grid has 0-based indexing.
2. A rotten orange can affect the adjacent oranges 4 directionally i.e. Up, Down, Left, Right.
In this round, two questions are asked. In all the questions I have to write the code (Not executed). In all the questions they asked Time and space complexity.




Here, for ‘X ’= 7, the output will be 1 3 7.
The idea is to find paths from root nodes to the two nodes and store them in two separate vectors or arrays say path1 and path2.
Now, there arises two different cases:
Case 1 : If the two nodes are in different subtrees of root nodes. That is one in the left subtree and the other in the right subtree. In this case it is clear that root node will lie in between the path from node1 to node2. So, print path1 in reverse order and then path 2.
Case 2 : If the nodes are in the same subtree. That is either in the left subtree or in the right subtree. In this case you need to observe that path from root to the two nodes will have an intersection point before which the path is common for the two nodes from the root node. Find that intersection point and print nodes from that point in a similar fashion of the above case.



1. 0-based indexing is used in the array.
2. We only care about the garden from 0 to 'N' only. So if i - 'ARR'['i'] < 0 or i + 'ARR'['i'] > 'N', you may ignore the exceeding area.
3. If some fountain covers the garden from position 'A' to position 'B', it means that the water from this fountain will spread to the whole line segment with endpoints 'A' and 'B'.
It is a Resume round, that was taken by a manager.
Why do you want to change company?
What will your colleagues say when asked why you have changed?
Can expect questions on previous experience, projects.

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?