Tip 1 : Get a tight grip to DS Algo for which you can practice as much questions as possible
Tip 2 : Focus on major System design topics
Tip 3 : Be confident
Tip 1 : Always put those things on resume for which you are confidence
Tip 2 : be confident



Consider 0-based indexing.
Consider the array 1, 2, 3, 4, 5, 6
We can Jump from index 0 to index 1
Then we jump from index 1 to index 2
Then finally make a jump of 3 to reach index N-1
There is also another path where
We can Jump from index 0 to index 1
Then we jump from index 1 to index 3
Then finally make a jump of 2 to reach index N-1
So multiple paths may exist but we need to return the minimum number of jumps in a path to end which here is 3.
This round was majorly focused on DS Algo concepts which included questions from string z Arrays, Binary search, Tree, Graphs



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
I maintained two variables to store the maximum water trapped till that point. Since water trapped at any element would be min(maximum_left, maximum_right) – a[i] so that's how I am was able to solve the question
LLD questions were asked in the question
Design Practo.
Tip 1 : Focus on OOPS concept which will help you in writing efficient code
Tip 2 : Have good knowledge about database management
Tip 3 : At Last have good knowledge of data structures and algorithms

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?