Given two binary trees, determine if they are structurally identical and have the same node values.
Recursive comparison:
None → same (both empty)None and other isn't → differentis_same_tree(t1, t2)
True
is_same_tree(t1, t3)
False
is_same_tree(None, None)
True