Tip 1 : Coding Practice in Hackerrank or Leet Code or some other best platforms at least 1 topic with 50-75 questions
Tip 2 : Firm in the Concepts you learn
Tip 3 : Be clear with what project you have worked on and working on
Tip 1 : Have some good projects that grab the interviewer attention
Tip 2 : Only Keep the necessary information not all the history
Morning between 9 - 11, we were asked to attempt. Duration is 1 hour. Environment was friendly.


For a node, if there is no higher value node in the linked list, it’s ‘nextHigher’ pointer should point to NULL.
The round was basic to intermediate questions to test the problem solving skills. It was 1 hour.


Let’s say the age of players is [1,2,6,4] and the skill of players is [1,2,3,4]. We cannot take all players in the team as 3rd player is older than 4th player but 4th player has strictly greater skill than 3rd player. Therefore we can take anyone among them. Therefore the highest total skill of team which is possible is 7.
This round is completely based on the data structure and python coding - difficulty was intermediate to advanced.



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.



‘STR’ = “i am a Ninja”, ‘N’ = 3 and ‘WORDS[]’ = [“Ninja”,”a”,”am”]. Then the output should be [1,1,1]. Because the occurrence of “Ninja” in ‘STR’ is 1 and the occurrence of “a” in ‘STR’ is 1.Similarly occurrence of “am” is 1.
The output should be in the same order as given in ‘WORDS’.

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