From c5f395c265174d05b7110d59edb8686fd6ea3d16 Mon Sep 17 00:00:00 2001 From: Tim Parsons Date: Wed, 11 Oct 2023 06:13:11 -0700 Subject: [PATCH] Updated difficulty of Lowest Common Ancestor of BST --- apps/website/contents/_components/QuestionGroups.json | 2 +- apps/website/contents/best-practice-questions.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/website/contents/_components/QuestionGroups.json b/apps/website/contents/_components/QuestionGroups.json index 04b6d72759..f3f1ab9ceb 100644 --- a/apps/website/contents/_components/QuestionGroups.json +++ b/apps/website/contents/_components/QuestionGroups.json @@ -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": [] diff --git a/apps/website/contents/best-practice-questions.md b/apps/website/contents/best-practice-questions.md index 96eb369610..c1d38351eb 100644 --- a/apps/website/contents/best-practice-questions.md +++ b/apps/website/contents/best-practice-questions.md @@ -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/) |