Tip 1: Consistent Practice – Dedicate regular time slots each day or week to practice and learn. Consistency helps reinforce new skills and build confidence over time.
Tip 2: Seek Feedback – Actively seek feedback from peers, mentors, or online communities. Constructive criticism can provide valuable insights and help you refine your skills more effectively.
Tip 3: Project Focus – Do at least two projects with a primary focus on understanding every detail and the complete tech stack involved.
Tip 1: Have at least one project.
Tip 2: Maintain a good command over DSA.



For the given if ARR = [1,1,3],the answer will be [ ],[1],[1,1],[1,3],[3],[1,1,3].



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.





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?

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