Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated difficulty of Lowest Common Ancestor of BST #611

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Updated difficulty of Lowest Common Ancestor of BST
  • Loading branch information
timmparsons committed Oct 11, 2023
commit c5f395c265174d05b7110d59edb8686fd6ea3d16
2 changes: 1 addition & 1 deletion apps/website/contents/_components/QuestionGroups.json
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@
"url": "https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree",
"duration": 20,
"epi": 1,
"difficulty": "Easy",
"difficulty": "Medium",
"id": 235,
"topic": "binary-search-tree",
"routines": []
2 changes: 1 addition & 1 deletion apps/website/contents/best-practice-questions.md
Original file line number Diff line number Diff line change
@@ -117,7 +117,7 @@ Week 4 builds up on knowledge from previous weeks but questions are of increased
| Question | Difficulty | LeetCode |
| :-- | --- | --- |
| Subtree of Another Tree | Easy | [Link](https://leetcode.com/problems/subtree-of-another-tree/) |
| Lowest Common Ancestor of BST | Easy | [Link](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/) |
| Lowest Common Ancestor of BST | Medium | [Link](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/) |
| Implement Trie (Prefix Tree) | Medium | [Link](https://leetcode.com/problems/implement-trie-prefix-tree/) |
| Add and Search Word | Medium | [Link](https://leetcode.com/problems/add-and-search-word-data-structure-design/) |
| Kth Smallest Element in a BST | Medium | [Link](https://leetcode.com/problems/kth-smallest-element-in-a-bst/) |