Cousins in Binary Tree
Try to solve the Cousins in Binary Tree problem.
We'll cover the following...
We'll cover the following...
Statement
Given the root of a binary tree and two distinct values x and y, determine whether the nodes with values x and y are cousins.
Two nodes are cousins if they are at the same depth in the tree but have different parent nodes. Return true if they are cousins, otherwise return false.
Note: The values
xandyare guaranteed to appear somewhere in the tree. ...