Tip 1 : Practice at least 2-3 questions per day
Tip 1 : Resume should be mention all your details
Tip 2 : Don't add things on which you are not comfortable. eg. if you are not very good in machine learning, then dont write it



For the given binary tree

The level order traversal will be {1,2,3,4,5,6,7}.



Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL
Output: 5 -> 7 -> 9 -> NULL
Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.



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.
Tell me about yourself.
What is your salary expectation?
Why do you want to join 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?