Skip to content

Commit 7066a84

Browse files
authored
update 236: add a solution link
1 parent c17c26f commit 7066a84

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

236/Solution.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// https://www.youtube.com/watch?v=WqNULaUhPCc
2+
13
class Solution {
24
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
35
if (root == null || root == p || root == q) return root;

0 commit comments

Comments
 (0)