Tip 1 : Give Mock Interviews
Tip 2 : Prepare a list of solved questions and write approach in one line
Tip 3 : Go through list of solved questions every now and then
Tip 1 : Format it well
Tip 2 : Include co-curricular activities
It was afternoon. I was at my home. The interviewers were sweet and helpful.
Design Tic Tac Toe API (Low Level Design)
Step 1 : Write a low-level design of tic tac toe components.
Step 2 : It required designing several functions.
Step 3 : The interviewer also discussed about threads and cases where this component will be served as an API.
It was early morning. I was at home. The interviewers were sweet and helpful.



You may assume that the sequence is always correct, i.e., every booked room was previously free, and every freed room was previously booked.
In case, 2 rooms have been booked the same number of times, you have to return Lexographically smaller room.
A string 'a' is lexicographically smaller than a string 'b' (of the same length) if in the first position where 'a' and 'b' differ, string 'a' has a letter that appears earlier in the alphabet than the corresponding letter in string 'b'. For example, "abcd" is lexicographically smaller than "acbd" because the first position they differ in is at the second letter, and 'b' comes before 'c'.
n = 6, Arr[] = {"+1A", "+3E", "-1A", "+4F", "+1A", "-3E"}
Now in this example room “1A” was booked 2 times which is the maximum number of times any room was booked. Hence the answer is “1A”.

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?