Tip 1 : Practice on leetcode
Tip 2 : make notes
Tip 1 : Minimum 2 projects
Tip 2 : Internship experience would be handy



Tip 1: don't start coding straight away
Tip 2:find the optimal solution structure the code properly
Tip 3:And then just type it down quickly without making syntax errors



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?
Tip 1:Explain the brute force approach first
Tip 2:then explain the most efficient solutions
Tip 3:your code should neat and clean and variable naming should be adequate



Tip 1: Explain the time and space complexity
Tip 2: Question will be turned and twisted so you need to be fundamentally clear

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?