Tip 1 : Be loud while thinking of the solution during interview
Tip 2 : During preparation time, do mock interviews
Tip 3 : Do interview preparation, practice writing code while thinking or explaining a solution, as now days interviews are virtual so, it would help to explain logic well.
Tip 1 : Good to mention coding platform profile links, any good ranks in contests
Tip 2 : Keep it one pager, and mention good projects along with Core subjects, that you have learned.
It was a DSA round, scheduled at evening 9PM, as interviewer is from US, Google have their own doc which is differnet from general google doc, that doc support language formatting, and interviewer was polite and given time to settle down.



Cost of entries where j < i will be represented as INT_MAX VALUE which is 10000 in the price matrix.
If ‘N’ = 3
'PRICE[3][3]' = {{0, 15, 80,},
{INF, 0, 40},
{INF, INF, 0}};
First, go from 1st station to 2nd at 15 costs, then go from 2nd to 3rd at 40. 15 + 40 = 55 is the total cost.It is cheaper than going directly from station 1 to station 3 as it would have cost 80.
The output will be 55.

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?