Tip 1: Prepare data structures thoroughly.
Tip 2: Be confident when explaining your approach.
Tip 3: Your thought process matters more than the code, so be vocal about what you are thinking.
Tip 1: Highlight your DSA skills strongly.
Tip 2: Strong projects help you stand out.
The online assessment was conducted at a convenient time, 11:00 AM in the morning.
Problem was to build a space of tree in which we can code in any language, this requires concept of oops.






A string ‘B’ is a substring of a string ‘A’ if ‘B’ that can be obtained by deletion of, several characters(possibly none) from the start of ‘A’ and several characters(possibly none) from the end of ‘A’.
Two strings ‘X’ and ‘Y’ are considered different if there is at least one index ‘i’ such that the character of ‘X’ at index ‘i’ is different from the character of ‘Y’ at index ‘i’(X[i]!=Y[i]).



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.



1. Input will always have only two integers that appear exactly once rest will appear twice.
2. Try to do this in linear time and constant space.
Tip 1: Read about the company.
Tip 2: Be well prepared about the managerial rounds.

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