Skip to content

Commit bf1c31d

Browse files
author
Gonzalo Diaz
committed
[FIX] Typo in doc fixed. Wrong url.
1 parent ecad5ae commit bf1c31d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/hackerrank/interview_preparation_kit/trees/binary-search-tree-lowest-common-ancestor.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# [Tree: Height of a Binary Tree](https://www.hackerrank.com/challenges/tree-height-of-a-binary-tree)
1+
# [Binary Search Tree: Lowest Common Ancestor](https://www.hackerrank.com/challenges/binary-search-tree-lowest-common-ancestor)
22

33
- Difficulty: `#easy`
4-
- Category: `#ProblemSolvingAdvanced`
4+
- Category: `#ProblemSolvingAdvanced` `#trees`
55

66
You are given pointer to the root of the binary search tree and
77
two values `v1` and `v2`.
8-
You need to return the lowest common ancestor ([LCA](https://www.hackerrank.com/challenges/binary-search-tree-lowest-common-ancestor/copy-from/272004115#:~:text=lowest%20common%20ancestor%20(-,LCA,-)%20of))
8+
You need to return the lowest common ancestor ([LCA](https://en.wikipedia.org/wiki/Lowest_common_ancestor))
99
of `v1` and `v2` in the binary search tree.
1010

1111
```mermaid

0 commit comments

Comments
 (0)