Tip 1 : Never never try to cheat in online interview the interviewer will definitely get to know.
Tip 2 : Psuedo code presentation matters a lot so name Your variable properly and with proper indentation.
Tip 3 : Keep on trying even if You feel that's not the right answer so at least put that idea forward.
Tip 4 : Do Leetcode medium questions as much as possible As they are mostly asked in Interviews.
Tip 1 : Avoid unnecesary details on Resume
Tip 2 : Make It look clean and also keep it of one page
He first asked me to discuss my approach. I started with a basic brute force approach using 3-4 hashmaps and in linear time. Then I optimized it to O (log N) time complexity. I tried to convert it into O (1) time complexity using LinkedList. But my logic will not work for a few edge cases. He then gave a hint, and I am able to solve the question properly. It took around 30 minutes for the discu...