Tip 1 : Practice at least 500 Questions, 50 questions from each topic (this is the minimum criteria to gain confidence and to improve your coding skills.)
Tip 2 : Study CS subjects throughly.
Tip 3 : Do some research and only then make your resume. Resume plays an important role during shortlisting.
Tip 1 : Try to tweak your resume according to the job description.
Tip 2 : Have some experience and projects on resume.
It was from 7:00 pm to 8:00 pm. It was a technical round were two leetcode questions were asked from me. The interviewer was good and polite.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
This was an easy question and I was aware of the solution, I solved it within 10 minutes.



The numeric value of ‘a’ is 1, ‘b’ is 2.
The numeric value of “bde” is 2 + 4 + 5, i.e. 11.
If 'N' = 3 and 'V' = 10, you need to construct string as “aah".
I saw this problem for the first time but after putting some thought into it I was able to solve it. Related topics- string and greedy.
This interview was scheduled from 3:00 pm to 4:00 pm. The interviewer was very helpful, he asked me one question from trees and other questions from OOPS, OS, DBMS, mysql query.




The left view of the above binary tree is {5, 7, 14, 25}.
I knew this problem and the solution to this question. I explained my approach and the interviewer asked me code it and run it. He was happy after I showed him a running solution.
It was from 2:00 pm to 3:00 pm. The interviewer was friendly and helped me during the rounds. He asked few OS questions and one coding question.



Consider 'N' = 10, 'connections' = [[2, 10]]
We can go from 1 -> 2 with the help of dice (the number of operations increases by 1).
We can go from 2 -> 10 as 2 is directly connected to 10. No operation is required for this.
Hence the answer is 1.

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?