Tip 1: Include good projects on your resume for discussion.
Tip 2: Use a single-page resume.
Tip 3: Ensure your basics are clear.
Tip 1: Keep your resume to a single page.
Tip 2: Don't use too many fonts; keep it simple.
This was the first round of elimination. The round consists of 7 sections.



Given:
‘N’ = 3, ‘M’ = 3.
‘edges’ =
[[0 1 1],
[1 2 1],
[0 2 3]]
‘src’ = 0, ‘dest’ = 2.
There are two possible paths, that is to go from node-0 to node-2 directly, which will take 2 units of effort, or go from node-0 to node-1 and then node-1 to node-2, which will take 1 unit of effort.
Applied djisktra algortihm to solve this problem



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.
Dynamic programming approach.
The panelist was a Senior Platform Engineer at JUSPAY. The interview began with greetings, after which the panelist asked me to share my resume and introduce myself. The panelist provided a few suggestions on my resume, to which I responded calmly. Below are the topics discussed during the interview.
Introduce yourself
What are your strengths and weaknesses?
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?