1790. Lowest Common Ancestor of a Binary Tree III

Medium
Hash Table
Two Pointers
Tree
Binary Tree

Description

Hints

Hint 1
Store the path from p to the root.
Hint 2
Traverse the path from q to the root, the first common point of the two paths is the LCA.

Statistics

Acceptance
83.0%
Submissions
487,207
Accepted
404,155