@@ -123,7 +123,7 @@ const questions = [
123
123
id: 10,
124
124
name: 'Word Search',
125
125
url: 'https://leetcode.com/problems/word-search/',
126
- pattern: ['Arrays', ' Backtracking'],
126
+ pattern: ['Backtracking'],
127
127
difficulty: 'Medium',
128
128
premium: false,
129
129
companies: [
@@ -1292,7 +1292,7 @@ const questions = [
1292
1292
id: 107,
1293
1293
name: 'Kth Smallest Element in a BST',
1294
1294
url: 'https://leetcode.com/problems/kth-smallest-element-in-a-bst/',
1295
- pattern: ['DFS', "Top 'K' Elements" ],
1295
+ pattern: ['DFS'],
1296
1296
difficulty: 'Medium',
1297
1297
premium: false,
1298
1298
companies: ['Amazon', 'Oracle', 'Facebook', 'Apple', 'Bloomberg'],
@@ -1301,7 +1301,7 @@ const questions = [
1301
1301
id: 108,
1302
1302
name: 'K Closest Points to Origin',
1303
1303
url: 'https://leetcode.com/problems/k-closest-points-to-origin/',
1304
- pattern: ['Heap', "Top 'K' Elements" ],
1304
+ pattern: ['Heap'],
1305
1305
difficulty: 'Medium',
1306
1306
premium: false,
1307
1307
companies: ['Facebook', 'Amazon', 'Asana', 'Oracle', 'Apple'],
@@ -1310,7 +1310,7 @@ const questions = [
1310
1310
id: 109,
1311
1311
name: 'Top K Frequent Elements',
1312
1312
url: 'https://leetcode.com/problems/top-k-frequent-elements/',
1313
- pattern: ['Heap', "Top 'K' Elements" ],
1313
+ pattern: ['Heap'],
1314
1314
difficulty: 'Medium',
1315
1315
premium: false,
1316
1316
companies: ['Amazon', 'Facebook', 'Oracle', 'Google', 'Yelp', 'Apple'],
@@ -1319,7 +1319,7 @@ const questions = [
1319
1319
id: 110,
1320
1320
name: 'Sort Characters By Frequency',
1321
1321
url: 'https://leetcode.com/problems/sort-characters-by-frequency/',
1322
- pattern: ['Heap', "Top 'K' Elements" ],
1322
+ pattern: ['Heap'],
1323
1323
difficulty: 'Medium',
1324
1324
premium: false,
1325
1325
companies: ['Amazon', 'Bloomberg', 'Uber'],
@@ -1328,7 +1328,7 @@ const questions = [
1328
1328
id: 111,
1329
1329
name: 'Kth Largest Element in an Array',
1330
1330
url: 'https://leetcode.com/problems/kth-largest-element-in-an-array/',
1331
- pattern: ['Heap', "Top 'K' Elements" ],
1331
+ pattern: ['Heap'],
1332
1332
difficulty: 'Medium',
1333
1333
premium: false,
1334
1334
companies: [
@@ -1349,7 +1349,7 @@ const questions = [
1349
1349
id: 112,
1350
1350
name: 'Reorganize String',
1351
1351
url: 'https://leetcode.com/problems/reorganize-string/',
1352
- pattern: ['Greedy', 'Heap', "Top 'K' Elements" ],
1352
+ pattern: ['Greedy', 'Heap'],
1353
1353
difficulty: 'Medium',
1354
1354
premium: false,
1355
1355
companies: [
@@ -1365,7 +1365,7 @@ const questions = [
1365
1365
id: 113,
1366
1366
name: 'Rearrange String k Distance Apart',
1367
1367
url: 'https://leetcode.com/problems/rearrange-string-k-distance-apart',
1368
- pattern: ['Greedy', 'Heap', "Top 'K' Elements" ],
1368
+ pattern: ['Greedy', 'Heap'],
1369
1369
difficulty: 'Hard',
1370
1370
premium: true,
1371
1371
companies: ['Google'],
@@ -1747,7 +1747,7 @@ const questions = [
1747
1747
id: 149,
1748
1748
name: 'Serialize and Deserialize Binary Tree',
1749
1749
url: 'https://leetcode.com/problems/serialize-and-deserialize-binary-tree/',
1750
- pattern: ['Design', 'DFS' ],
1750
+ pattern: ['Design'],
1751
1751
difficulty: 'Hard',
1752
1752
premium: false,
1753
1753
companies: [
0 commit comments