Tip 1: Must up solve problems from contests
Tip 2: Don't ignore CS fundamentals, you will surely regret
Tip 3: Be confident during your Interview and ask good follow-up questions, asking the right questions and being curious is very important
Tip 1 : Make a neat one page resume
Tip 2 : Don't explain your work and past experience in long paragraphs. Use brief bullet points






‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
Implement a flight booking system, handling multiple concurrent requests
Tip 1 : Implement the basic functionality first to have a working solution
Tip 2 : Think about improving the performance next
Tip 3 : Always think of edge cases that can break your code
Interviewer was friendly, had a small chat to help me get comfortable before proceeding to the questions.
Implement a back button functionality on a web page.
- Visualized the problem
- Extracted out important info
- Thinking out loud
- First went with the brute Force
- At the end explained the optimized solution



For the given 5 intervals - [1, 4], [3, 5], [6, 8], [10, 12], [8, 9].
Since intervals [1, 4] and [3, 5] overlap with each other, we will merge them into a single interval as [1, 5].
Similarly, [6, 8] and [8, 9] overlap, merge them into [6,9].
Interval [10, 12] does not overlap with any interval.
Final List after merging overlapping intervals: [1, 5], [6, 9], [10, 12].

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?