Tip 1 : Practice 5 questions daily based on DSA
Tip 2 : Mention good projects
Tip 1 : Keep it short and crisp
Tip 2 : Do not put false things on your resume






Input: linked list = [1 2 3 4] , k = 2
Output: 3 4 1 2
Explanation:
We have to rotate the given linked list to the right 2 times. After rotating it to the right once it becomes 4->1->2->3. After rotating it to the right again, it becomes 3->4->1->2.

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