Tip 1 : Practice atleast 250-300 questions as this will improve your problem solving approach
Tip 2 : Do not be a hurry in an interview. First listen then think and then react.
Tip 3 : NEVER bluff anything in your resume. Interviewers are generally experienced folks and any over-smartness from them can pull you down
Tip 1 : Have some projects on resume
Tip 2 : Do not put false things on resume.



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?


Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.



If a particular job has a deadline 'x', it means that it needs to be completed at any time before 'x'.
Assume that the start time is 0.
'N' = 3, Jobs = [[1, 1, 30], [2, 3, 40], [3, 2, 10]].
All the jobs have different deadlines. So we can complete all the jobs.
At time 0-1, Job 1 will complete.
At time 1-2, Job 3 will complete.
At time 2-3, Job 2 will complete.
So our answer is [3 80].
Some application design based on the problem statement.
Introduce yourself.
What do you know about this company?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?