Tip 1 : Practice medium level questions on leetcode from all topics
Tip 2 : Start preparation in first year itself
Tip 1 : Have at least one unique project on it
Tip 2 : Maintain a good CGPA






For a given string “BaaB”
3 possible palindrome partitioning of the given string are:
{“B”, “a”, “a”, “B”}
{“B”, “aa”, “B”}
{“BaaB”}
Every substring of all the above partitions of “BaaB” is a palindrome.



If it is impossible to finish all courses, return an empty array. If there are multiple answers, return any one.
Input:
3 2
1 2
2 3
There are three courses to take. To start with, First course 3 is taken. Then course 2 is taken for which course 3 must be completed.
At last course 1 is taken for which course 2 must be completed. So the correct course order is [3,2,1].



Introduce yourself
What do you know about Capgemini?
Why do you want to join us?
How was your experience during the previous rounds?
Why should we hire you?

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?