Tip 1 : Practise leetcode questions as much as possible.
Tip 2 : Try to come up with Optimised solution always.
Tip 3 : Try using C++ for the online assessments.
Tip 1 : Keep it to one side
Tip 2 : Only add the things necessary for the role that you're applying for.
Tip 3 : Don't lie in the resume and add projects related to the role.
Tip 4 : Add any volunteering work that you did.
It was an online assessment. I was given 2 coding questions was supposed to complete it in 90 Minutes.



Choose a node of the tree, swap its left and right subtree i.e the left subtree will become the right one, and vice versa.
1. A binary tree is a tree in which each node has at most two children.
2. The left subtree of a node, is the tree in which the left child of the node is the root of that tree, and the same holds for the right subtree.
3. The given operation can be performed on any node at any level of the given trees.
4. Two empty trees are also said to be isomorphic.


A contiguous subsequence of a list S is a subsequence made up of consecutive elements of S. If S is {5, 15, -30, 10, -5, 40, 10} then 15, -30, 10 is a contiguous subsequence.

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