Tip 1 : Prepare DSA well from Leetcode or GFG and practice a lot. Try to practice Medium and hard level questions.
Tip 2 : Prepare some good projects, donot copy-paste from online sources.
Tip 3 : Learn to present yourself by taking at least 10 mock interviews with friends or sites like pramp
Tip 1 : Be to the point and according to JD. keep it one paged.
Tip 2 : Start the sentences with action words like developed, implemented etc.
Timing - 6PM,
Mode - online, from home.
Coding questions on Segment tree, Dynamic Programming & Arrays



For given 2D array :
[ [ 1, 2, 3 ],
[ 4, 5, 6 ],
[ 7, 8, 9 ] ]
After 90 degree rotation in anti clockwise direction, it will become:
[ [ 3, 6, 9 ],
[ 2, 5, 8 ],
[ 1, 4, 7 ] ]



Timing - 10PM
Interview was online through G-Meet
Design a Least Recently Used Cache using OOPS
Tip 1: Clear problem statement if any doubts.
Tip 2: Try to implement optimal solution and also try to give alternate approach and reason for not going with that approach
Tip 3: Practice structured thinking

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?