Skip to content
Merged
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
97 changes: 95 additions & 2 deletions 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: 'Trie',
difficulty: 'Medium',
companies: ['Amazon', 'Microsoft', 'Google', 'Facebook'],
},
Expand Down Expand Up @@ -1626,7 +1626,7 @@ export default [
id: 150,
name: 'Word Search II',
url: 'https://leetcode.com/problems/word-search-ii/',
pattern: 'DFS',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Amazon',
Expand Down Expand Up @@ -1820,4 +1820,97 @@ export default [
'Bloomberg',
],
},
{
id: 164,
name: 'Longest Word in Dictionary',
url: 'https://leetcode.com/problems/longest-word-in-dictionary/',
pattern: 'Trie',
difficulty: 'Easy',
companies: [
'Goldman Sachs',
'Google',
],
},
{
id: 165,
name: 'Index Pairs of a String',
url: 'https://leetcode.com/problems/index-pairs-of-a-string/',
pattern: 'Trie',
difficulty: 'Easy',
companies: [
'Amazon',
],
},
{
id: 166,
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: [
'Google',
],
},
{
id: 167,
name: 'Concatenated Words',
url: 'https://leetcode.com/problems/concatenated-words/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Amazon',
'Apple',
'Facebook',
],
},
{
id: 168,
name: 'Prefix and Suffix Search',
url: 'https://leetcode.com/problems/prefix-and-suffix-search/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Facebook',
'Google',
'Uber',
],
},
{
id: 169,
name: 'Palindrome Pairs',
url: 'https://leetcode.com/problems/palindrome-pairs/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Airbnb',
'Amazon',
'Facebook',
'Google',
'Square',
],
},
{
id: 170,
name: 'Design Search Autocomplete System',
url: 'https://leetcode.com/problems/design-search-autocomplete-system/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Amazon',
'Google',
'Lyft',
'Microsoft',
'Uber',
],
},
{
id: 171,
name: 'Word Squares',
url: 'https://leetcode.com/problems/word-squares/',
pattern: 'Trie',
difficulty: 'Hard',
companies: [
'Oracle',
],
},
];