Tip 1 : Practice Data Structures
Tip 2 : Do some awesome industry level projects
Tip 3 : Be confident during interview
Tip 1 : Add projects with GitHub links in projects
Tip 2 : Add only those things which will help you during interview
Some aptitude questions are there and 2 problem solving questions



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.
I used the approach of +1 for open braves and -1 for closed braces, any where if i found count negative during iterating through the string i would return false
If after interation count is more than 0 return false
Else return true
Interviewer discussed some dsa questions which was in a 1 st round and gave me some problems to solve



I used set and had two variables i and j both initially assigned zero. I added each character into the set and incremented j as index if that particular character is not present in the string ; else if present , the character is removed till the repeating character from ith index till the jth index. The final length of the set is the answer.
HR asked me some managerial questions.
1- Why you want to join our company.
2- What you prefer work from home or office.
3- Where you see yourself in next 5 years

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