Skip to content

Added Trie Category Questions #9

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

Merged
merged 3 commits into from
May 26, 2020
Merged
Changes from 1 commit
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
Next Next commit
Added Trie Category Questions
  • Loading branch information
mm1705 committed May 25, 2020
commit b62ffcb16b8d3e1843872eb36d8c504e1a444ce6
50 changes: 49 additions & 1 deletion src/data/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1592,7 +1592,7 @@ export default [
id: 147,
name: 'Implement Trie (Prefix Tree)',
url: 'https://leetcode.com/problems/implement-trie-prefix-tree/',
pattern: 'DFS',
pattern: 'DFS',//Trie
difficulty: 'Medium',
companies: ['Amazon', 'Microsoft', 'Google', 'Facebook'],
},
Expand Down Expand Up @@ -1820,4 +1820,52 @@ export default [
'Bloomberg',
],
},
{
id: 164,
name: 'Longest Word in Dictionary',
url: 'https://leetcode.com/problems/longest-word-in-dictionary/',
pattern: 'Trie',
difficulty: 'Easy',
companies: [],
},
{
id: 165,
name: 'Maximum XOR of Two Numbers in an Array',
url: 'https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array',
pattern: 'Trie',
difficulty: 'Medium',
companies: [],
},
{
id: 166,
name: 'Concatenated Words',
url: 'https://leetcode.com/problems/concatenated-words/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [],
},
{
id: 167,
name: 'Prefix and Suffix Search',
url: 'https://leetcode.com/problems/prefix-and-suffix-search/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [],
},
{
id: 168,
name: 'Palindrome Pairs',
url: 'https://leetcode.com/problems/palindrome-pairs/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [],
},
{
id: 169,
name: 'Word Search II',
url: 'https://leetcode.com/problems/word-search-ii/,
pattern: 'Trie',
difficulty: 'Hard',
companies: [],
},
];