Tip 1 : Practice the pattern printing coding question
Tip 2 : Practice the SQL query
Tip 3 : At least you should have one web development project
Tip 1 : Must have projects in resume
Tip 2 : If you done some internship it would be plus point
There were around 15 people and they had given us a topic which was is Online education good or offline so we all were given 5 minutes each and one person was there to judge us.
There were two coding questions in this round



1. Every train will depart on the same day and the departure time will always be greater than the arrival time. For example, A train with arrival time 2240 and departure time 1930 is not possible.
2. Time will be given in 24H format and colons will be omitted for convenience. For example, 9:05AM will be given as "905", or 9:10PM will be given as "2110".
3. Also, there will be no leading zeroes in the given times. For example, 12:10AM will be given as “10” and not as “0010”.
Sort the arrival time and then compare this with departure time. And also maintaing if next arrival is less than departure then no need for extra platform and if it is less than then we need 1 extra platform.



First sort the array then start from the starting index and for the rest of array using two pointer approach we can get the number of triplets

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?