Tip 1 : Practice famous interview problems from Leetcode/GFG as much as possible.
Tip 2 : Try reading as many interview experiences as much possible.
Tip 3 : Also try solving a problem with as many approaches as you can. Also try to code the solution in the most optimal and efficient manner.
Tip 1 : Try making the one pager resume.
Tip 2 : In resume try giving more emphasis to your past experiences/challenges which you have dealt with previously.



Down: (row+1,col)
Down left diagonal: (row+1,col-1)
Down right diagonal: (row+1, col+1)
I solved both the questions going from brute-force to fully optimised.



Input array [5,5,6,4,6],If we look at the frequency of different elements in this array.We can see,4 appears an odd number of times, so our answer will be 4.



I solved this question going from brute force to fully optimised solution
Design tiny url.
I gave optimised approach for designing/approach of converting the long url to short url
1. Your strengths and weakness
2. Where do you see yourself after 6 years?

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