Tip 1 : Have some knowledge of the role
Tip 2 : basics were clear
Tip 1 : Have projects and internships
Tip 2 : Have good skills with proper knowledge



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)



For the given binary tree: [1, 2, 3, -1, -1, 4, 5, -1, -1, -1, -1]
Start Node: 3
1
/ \
2 3
/ \
4 5
Output: 2
Explanation :
In the zeroth minute, Node 3 will start to burn.
After one minute, Nodes (1, 4, 5) that are adjacent to 3 will burn completely.
After two minutes, the only remaining Node 2 will be burnt and there will be no nodes remaining in the binary tree.
So, the whole tree will burn in 2 minutes.
Willing to relocate?
What is your biggest achievement?
Able to handle pressure?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?