Question: Identical Trees Given the roots of two binary trees as input, return True if and only if they are identical; False, otherwise. Two trees are
Identical Trees Given the roots of two binary trees as input, return True if and only if they are identical; False, otherwise. Two trees are identical if they are structurally the same, and every corresponding pair of nodes contain the same value.
Example 1 Tree 1: 7 / \ 3 10 / \ / \ -1 5 9 12 Tree 2: 7 / \ 3 10 / \ / \ -1 5 9 12 Output: True Example 2 Tree 1: 2 / \ 3 1 Tree 2: 1 / \ 2 3 Output: False Example 3 Tree 1: 7 / \ 3 10 / \ 9 12 Tree 2: 7 / \ 3 10 / \ 9 12 Output: False
def are_identical(root1, root2):
return False
# Your test cases go here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
