Tip 1 : Practice problems of dynamic programming
Tip 2 : Graph algorithms are also important for this company
Tip 3 : Having projects is crucial for selection.
Tip 1 : Highlight projects on your resume.
Tip 2 : Having previous technical experience if any helps.
It was an online coding round with three questions. One was a simple problem of prime numbers sieve. One was of graph and one was of DP.
It happened in the afternoon on Hackerrank platform and we received the link via mail.


1. Prime indices are those indices that are prime numbers i.e. all the numbers except 0 and 1 which are divisible by 1 and the number itself. For eg. If a character is at index 5 in some string, then it is at a prime index, as 5 is a prime number.
2. The given string may consist of characters ‘a’-’z’, ‘A’-’Z’, ‘0’-’9’ at any place.
3. The given string follows 0-based indexing. So, assume that the first character of the given string is at index 0.




There are no parallel edges and self-loops in the graph given by Gwen.
A tree is a connected graph having no cycles.

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