Tip 1 : Learn currently used tech stack
Tip 2 : Practice DS and Algo
Tip 3 : Do 2 projects and upload them on github
Tip 1: Only write relevant things
Tip 2: BE confident on whatever you have written on your resume
Online , during the day, environment was nice


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.
I used a binary search since the matrix was sorted
Mostly coding round where the interviewer asked DS and algo



1. The left subtree of a node contains only nodes with data less than the node’s data.
2. The right subtree of a node contains only nodes with data greater than the node’s data.
3. The left and right subtrees must also be binary search trees.
It is guaranteed that all nodes have distinct data.
I used tree traversal and solved the problem

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?