Tip 1 : Solve good puzzles for the interviews
Tip 2 : Do some good projects
Tip 1 : Have a professional resume (I used deedy CV)
Tip 2 : Only write the things that you are confident about
Online, during the day



Input: 'arr' = [2, 2, 2, 2, 0, 0, 1, 0]
Output: Final 'arr' = [0, 0, 0, 1, 2, 2, 2, 2]
Explanation: The array is sorted in increasing order.
It is a standard problem in which I used sorting algo



The start time of one chosen meeting can’t be equal to the end time of the other chosen meeting.
'N' = 3, Start = [1, 3, 6], End = [4, 8, 7].
You can organize a maximum of 2 meetings. Meeting number 1 from 1 to 4, Meeting number 3 from 6 to 7.
during the day
You are the city admin and you have to design a system to fight covid and help govt. in maintaining hospital beds
Tip 1: Start with basics
Tip 2: Try to optimize as much as possible

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?