Tip 1 : each day atleast 4 DSA questions from leetcode
Tip 2 : Have deep understanding of your projects. You should be very good with the LLD and HLD of your own projects.
Tip 3 : don't just do all the easy questions. Increase the level of difficulty once you are able to solve the questions. Understanding the pattern of questions will help.
Tip 1 : Resume should be short and crisp
Tip 2 : Resume should be purely technical. Let others review your resume in order to avoid mistakes
Tip 3 : You should know each and every detail from the resume. Be prepared from any question.
Tip 4 : Resume should show the impact of your work.
there were 3 question, 2 easy 1 medium/hard.


If the same string can be generated multiple times, return them multiple times.



Input: 'INTERVALS' = [[1, 2], [1, 3], [2, 3], [3, 4]]
Output: 1
After rescheduling the worker with the interval [1, 3] it is possible to get the non-overlapping working times.



started with introduction and later continued with DSA questions. Difficulty was medium



If N = 2 and prerequisite = [[1, 2]]. Then, there are a total of 2 courses you need to take. To take course 1 you need to finish course 2. So, it is possible to complete all courses.
Started with introduction. Question difficulty was difficult.



1. If 'x' == 'y', both stones are totally destroyed;
2. If 'x' != 'y', the stone of weight 'x' is totally destroyed, and the stone of weight 'y' has a new weight equal to 'y - x'.
LLD Round
create the lld for splitwise(the invoice part).
Tip 1 : Think aloud
Tip 2 : discuss the points before coming to a conclusion(to avoid time wastage)
Tip 3 : you should know the design patterns(which to use when), caching techniques, database schema designing
HLD round by HM
HLD of my old project and SDLC lifecycle
Tip 1 : Think aloud
Tip 2 : Prepare well and be sure of what you say else you might get struck and that red flag might lead to rejection

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?