Skip to content

Commit ecf5beb

Browse files
committed
Updated Companies | Trie Category
1 parent b62ffcb commit ecf5beb

File tree

1 file changed

+26
-15
lines changed

1 file changed

+26
-15
lines changed

src/data/index.js

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1592,7 +1592,7 @@ export default [
15921592
id: 147,
15931593
name: 'Implement Trie (Prefix Tree)',
15941594
url: 'https://leetcode.com/problems/implement-trie-prefix-tree/',
1595-
pattern: 'DFS',//Trie
1595+
pattern: 'Trie',
15961596
difficulty: 'Medium',
15971597
companies: ['Amazon', 'Microsoft', 'Google', 'Facebook'],
15981598
},
@@ -1626,7 +1626,7 @@ export default [
16261626
id: 150,
16271627
name: 'Word Search II',
16281628
url: 'https://leetcode.com/problems/word-search-ii/',
1629-
pattern: 'DFS',
1629+
pattern: 'Trie',
16301630
difficulty: 'Hard',
16311631
companies: [
16321632
'Amazon',
@@ -1826,46 +1826,57 @@ export default [
18261826
url: 'https://leetcode.com/problems/longest-word-in-dictionary/',
18271827
pattern: 'Trie',
18281828
difficulty: 'Easy',
1829-
companies: [],
1829+
companies: [
1830+
'Goldman Sachs',
1831+
'Google',
1832+
],
18301833
},
18311834
{
18321835
id: 165,
18331836
name: 'Maximum XOR of Two Numbers in an Array',
18341837
url: 'https://leetcode.com/problems/maximum-xor-of-two-numbers-in-an-array',
18351838
pattern: 'Trie',
18361839
difficulty: 'Medium',
1837-
companies: [],
1840+
companies: [
1841+
'Google',
1842+
],
18381843
},
18391844
{
18401845
id: 166,
18411846
name: 'Concatenated Words',
18421847
url: 'https://leetcode.com/problems/concatenated-words/',
18431848
pattern: 'Trie',
18441849
difficulty: 'Hard',
1845-
companies: [],
1850+
companies: [
1851+
'Amazon',
1852+
'Apple',
1853+
'Facebook',
1854+
],
18461855
},
18471856
{
18481857
id: 167,
18491858
name: 'Prefix and Suffix Search',
18501859
url: 'https://leetcode.com/problems/prefix-and-suffix-search/',
18511860
pattern: 'Trie',
18521861
difficulty: 'Hard',
1853-
companies: [],
1862+
companies: [
1863+
'Facebook',
1864+
'Google',
1865+
'Uber',
1866+
],
18541867
},
18551868
{
18561869
id: 168,
18571870
name: 'Palindrome Pairs',
18581871
url: 'https://leetcode.com/problems/palindrome-pairs/',
18591872
pattern: 'Trie',
18601873
difficulty: 'Hard',
1861-
companies: [],
1862-
},
1863-
{
1864-
id: 169,
1865-
name: 'Word Search II',
1866-
url: 'https://leetcode.com/problems/word-search-ii/,
1867-
pattern: 'Trie',
1868-
difficulty: 'Hard',
1869-
companies: [],
1874+
companies: [
1875+
'Airbnb',
1876+
'Amazon',
1877+
'Facebook',
1878+
'Google',
1879+
'Square',
1880+
],
18701881
},
18711882
];

0 commit comments

Comments
 (0)