From 76e056f2f27f0323afbb739e35567de86cc5163b Mon Sep 17 00:00:00 2001 From: saiumasankar <119750857+saiumasankar@users.noreply.github.com> Date: Fri, 9 Aug 2024 22:45:35 +0530 Subject: [PATCH] Trie in blog (#470) --- .../2024-06-25-Trie-problems/Trie-problems.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 blog/2024-06-25-Trie-problems/Trie-problems.md diff --git a/blog/2024-06-25-Trie-problems/Trie-problems.md b/blog/2024-06-25-Trie-problems/Trie-problems.md new file mode 100644 index 00000000..76604ba8 --- /dev/null +++ b/blog/2024-06-25-Trie-problems/Trie-problems.md @@ -0,0 +1,20 @@ +--- +slug: Trie-problems +title: Trie Problems +authors: [saiumasankar] +tags: ["30daysofcpp", "linkedlist","practice-problems","leetcode"] +--- + +- [Implement Trie](https://leetcode.com/problems/implement-trie-prefix-tree) + +- [Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix) + +- [Replace Words](https://leetcode.com/problems/replace-words) + +- [Count Prefix and Suffix pairs](https://leetcode.com/problems/count-prefix-and-suffix-pairs-i) + +- [Find the length of Longest common prefix](https://leetcode.com/problems/find-the-length-of-the-longest-common-prefix) + +- [Shortest Uncommon Substring in an array](https://leetcode.com/problems/shortest-uncommon-substring-in-an-array) + +- [Maximum XOR of two numbers in an array](https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array) \ No newline at end of file