Tip 1 : prepare DSA properly
Tip 2 : Basics of java spring boot
Tip 1 : Mention coding platform questions solved
Tip 2 : Link to coding platform and project
Was already told that rounds will be DSA based
Interviewer was friendly



The lists (1 -> 2 -> 1), (3 -> 4 -> 4-> 3), and (1) are palindromes, while the lists (1 -> 2 -> 3) and (3 -> 4) are not.
First I thought of traversing the whole list and give the solution by storing list elements in string.
I was told not to use any extra space
Now it clicked me to reverse the linked list from middle. Doing this, I can traverse from half to opp. directions and tell is it palindrom or not



(i) If the input string is 'CodeGeek', the output should be CdGk after removing ‘o’ and ‘e’.
(ii) If the input string is 'Odinson', the output should be 'dnsn' after removing ‘o’ and ‘i’.
This was not only HR discussion but also contained some questions from Core computer subjects
Scheduling Algo of OS
Tip 1 : Be prepared with core CS subjects

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