Tip 1 : Used to practice daily on leetcode for couple of months
Tip 2 : System Design. takes time.
Tip 1 : Write only what you are confident about
Tip 2 : Dont write basic things
General discussion about the role.Also had the discussion over the salary .



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Firstly separate the words with the spaces and insert it into list.Then pop the elements from list from the last index.



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 round was like a discussion round. We had 2 interviewers, they asked some core c++ concepts by hands on examples like hot to create a copy constructor in c++.What is multi threading.Can we do multithreading in c++. They also asked OOPS.
So basically there main focus was on c++ core.

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?