Tip 1 : Be Consistent
Tip 2 : Timely revision of completed topics
Tip 3 : Read Interview Experiences of that company
Tip 1: Keep the resume to just 1 page with crisp and relevant information
Tip 2: Do provide the link to your projects hosted online and also the link to your CodeStudio profiles



Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL
Output: 5 -> 7 -> 9 -> NULL
Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.



Here, sorted paths mean that the expected output should be in alphabetical order.
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1
Expected Output:
DDRDRR DRDDRR
i.e. Path-1: DDRDRR and Path-2: DRDDRR
The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
The round was conducted online on webex. I received the mail previous day before the interview. The interviewer was friendly and calm.



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?


The graph may contain cycles.
It was a managerial round. But mainly HR questions was asked. It was easy. Normal interaction happened.
Description of the project that I made.
My Introduction, tech stack I am interested in and that I know.
Situation based questions like how to handle over work etc.
Tip 1 : Be Confident.
Tip 2 : Practice basic questions and your Introduction beforehand.

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?