Tip 1 : Regarding DSA preparation, focus more on the questions that have more chance of coming up in the interview. You can find these questions on Striver SDE Sheet, InterviewBit, Leetcode 100 most liked, Leetcode 100 most important etc.
Tip 1 : Make Sure that your resume is simple, and also try to fit all the information on only one page.
Tip 2 : Have at least 2 projects with the latest technologies. Github link of projects should be provided



Input:
Output: 2 35 2 10 2
Step 1 : Figure out how the tree will look after traversal and got the point that I have to do something like vertical order traversal
Step 2 : I do a level order traversal so that the topmost node at a horizontal node is visited before any other node of the same horizontal distance below it.
Step 3 : Hashing is used to check whether a node at a given horizontal distance is seen.
Step 4 : I explained the whole approach and code


Suppose we have 2 balls of type ‘A’, 1 ball of type ‘B’ and 1 ball of type ‘C’, following are the ways to arrange them in the required fashion.
ABCA
ABAC
ACBA
ACAB
BACA
CABA
Hence, there is a total of six ways.
Step 1 : Initially I read the problem and start thinking about two pointer approach
Step 2 : But after a few minutes I got to the point where I can treat balls as numbers (i.e 0, 1, 2) then I remembered the DNF algorithm
Step 3 : So I took three-pointers i.e low, high, and mid, and write code keeping in mind I save to store red -> white -> blue and applied DNF algo



Consider 0 based indexing.
Step 1 : He just asked for an approach to this question so I told him like that
Consider each cell as a node and each boundary between any two adjacent cells be an edge. so the total number of Nodes is N * N. So the idea is to do a breadth-first search from the starting cell till the ending cell is found.
Step 2 : Then he asked for time complexity
Asked for Schema Design of LinkedIn
Tip 1 : Practice the design of the schema
Tip 2 : Well understanding of the keys in schema

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