@@ -981,7 +981,7 @@ export default [
981
981
{
982
982
name : 'Find K Closest Elements' ,
983
983
url : 'https://leetcode.com/problems/find-k-closest-elements/' ,
984
- pattern : 'ModifiedBinary Search' ,
984
+ pattern : 'Modified Binary Search' ,
985
985
difficulty : 'Medium' ,
986
986
companies : [ 'Uber' ] ,
987
987
} ,
@@ -1217,94 +1217,94 @@ export default [
1217
1217
{
1218
1218
name : 'Binary Tree Level Order Traversal II' ,
1219
1219
url : 'https://leetcode.com/problems/binary-tree-level-order-traversal-ii/' ,
1220
- pattern : 'Tree Breadth First Search ' ,
1220
+ pattern : 'BFS ' ,
1221
1221
difficulty : 'Easy' ,
1222
1222
companies : [ 'Amazon' ] ,
1223
1223
} ,
1224
1224
{
1225
1225
name : 'Average of Levels in Binary Tree' ,
1226
1226
url : 'https://leetcode.com/problems/average-of-levels-in-binary-tree/' ,
1227
- pattern : 'Tree Breadth First Search ' ,
1227
+ pattern : 'BFS ' ,
1228
1228
difficulty : 'Easy' ,
1229
1229
companies : [ 'Facebook' ] ,
1230
1230
} ,
1231
1231
{
1232
1232
name : 'Minimum Depth of Binary Tree' ,
1233
1233
url : 'https://leetcode.com/problems/minimum-depth-of-binary-tree/' ,
1234
- pattern : 'Tree Breadth First Search ' ,
1234
+ pattern : 'BFS ' ,
1235
1235
difficulty : 'Easy' ,
1236
1236
companies : [ 'Facebook' ] ,
1237
1237
} ,
1238
1238
{
1239
1239
name : 'Binary Tree Level Order Traversal' ,
1240
1240
url : 'https://leetcode.com/problems/binary-tree-level-order-traversal/' ,
1241
- pattern : 'Tree Breadth First Search ' ,
1241
+ pattern : 'BFS ' ,
1242
1242
difficulty : 'Medium' ,
1243
1243
companies : [ 'Amazon' , 'Facebook' , 'Bloomberg' , 'Microsoft' , 'LinkedIn' ] ,
1244
1244
} ,
1245
1245
{
1246
1246
name : 'Binary Tree Zigzag Level Order Traversal' ,
1247
1247
url :
1248
1248
'https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/' ,
1249
- pattern : 'Tree Breadth First Search ' ,
1249
+ pattern : 'BFS ' ,
1250
1250
difficulty : 'Medium' ,
1251
1251
companies : [ 'Amazon' , 'Microsoft' , 'Bloomberg' , 'Qualtrics' , 'Facebook' ] ,
1252
1252
} ,
1253
1253
{
1254
1254
name : 'Populating Next Right Pointers in Each Node' ,
1255
1255
url :
1256
1256
'https://leetcode.com/problems/populating-next-right-pointers-in-each-node/' ,
1257
- pattern : 'Tree Breadth First Search ' ,
1257
+ pattern : 'BFS ' ,
1258
1258
difficulty : 'Medium' ,
1259
1259
companies : [ 'Amazon' , 'Bloomberg' , 'Microsoft' , 'Oracle' , 'Facebook' ] ,
1260
1260
} ,
1261
1261
{
1262
1262
name : 'Populating Next Right Pointers in Each Node II' ,
1263
1263
url :
1264
1264
'https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/' ,
1265
- pattern : 'Tree Breadth First Search ' ,
1265
+ pattern : 'BFS ' ,
1266
1266
difficulty : 'Medium' ,
1267
1267
companies : [ 'Microsoft' , 'Bloomberg' , 'Amazon' ] ,
1268
1268
} ,
1269
1269
{
1270
1270
name : 'Binary Tree Right Side View' ,
1271
1271
url : 'https://leetcode.com/problems/binary-tree-right-side-view/' ,
1272
- pattern : 'Tree Breadth First Search ' ,
1272
+ pattern : 'BFS ' ,
1273
1273
difficulty : 'Medium' ,
1274
1274
companies : [ 'Facebook' , 'Amazon' , 'Bloomberg' , 'Microsoft' ] ,
1275
1275
} ,
1276
1276
{
1277
1277
name : 'All Nodes Distance K in Binary Tree' ,
1278
1278
url : 'https://leetcode.com/problems/all-nodes-distance-k-in-binary-tree/' ,
1279
- pattern : 'Tree Breadth First Search ' ,
1279
+ pattern : 'BFS ' ,
1280
1280
difficulty : 'Medium' ,
1281
1281
companies : [ 'Facebook' , 'Amazon' , 'Uber' , 'Microsoft' , 'Oracle' ] ,
1282
1282
} ,
1283
1283
{
1284
1284
name : 'Boundary of Binary Tree' ,
1285
1285
url : 'https://leetcode.com/problems/boundary-of-binary-tree' ,
1286
- pattern : 'Tree Breadth First Search ' ,
1286
+ pattern : 'BFS ' ,
1287
1287
difficulty : 'Medium' ,
1288
1288
companies : [ 'Amazon' , 'Microsoft' ] ,
1289
1289
} ,
1290
1290
{
1291
1291
name : 'Same Tree' ,
1292
1292
url : 'https://leetcode.com/problems/same-tree/' ,
1293
- pattern : 'Tree Depth First Search ' ,
1293
+ pattern : 'DFS ' ,
1294
1294
difficulty : 'Easy' ,
1295
1295
companies : [ 'Amazon' , 'Microsoft' , 'Facebook' , 'Bloomberg' ] ,
1296
1296
} ,
1297
1297
{
1298
1298
name : 'Path Sum' ,
1299
1299
url : 'https://leetcode.com/problems/path-sum/' ,
1300
- pattern : 'Tree Depth First Search ' ,
1300
+ pattern : 'DFS ' ,
1301
1301
difficulty : 'Easy' ,
1302
1302
companies : [ 'Facebook' , 'Amazon' ] ,
1303
1303
} ,
1304
1304
{
1305
1305
name : 'Diameter of Binary Tree' ,
1306
1306
url : 'https://leetcode.com/problems/diameter-of-binary-tree/' ,
1307
- pattern : 'Tree Depth First Search ' ,
1307
+ pattern : 'DFS ' ,
1308
1308
difficulty : 'Easy' ,
1309
1309
companies : [
1310
1310
'Facebook' ,
@@ -1320,58 +1320,58 @@ export default [
1320
1320
{
1321
1321
name : 'Merge Two Binary Trees' ,
1322
1322
url : 'https://leetcode.com/problems/merge-two-binary-trees/' ,
1323
- pattern : 'Tree Depth First Search ' ,
1323
+ pattern : 'DFS ' ,
1324
1324
difficulty : 'Easy' ,
1325
1325
companies : [ 'Adobe' ] ,
1326
1326
} ,
1327
1327
{
1328
1328
name : 'Maximum Depth of Binary Tree' ,
1329
1329
url : 'https://leetcode.com/problems/maximum-depth-of-binary-tree/' ,
1330
- pattern : 'Tree Depth First Search ' ,
1330
+ pattern : 'DFS ' ,
1331
1331
difficulty : 'Easy' ,
1332
1332
companies : [ 'Amazon' , 'Microsoft' , 'Facebook' , 'Google' , 'Bloomberg' ] ,
1333
1333
} ,
1334
1334
{
1335
1335
name : 'Lowest Common Ancestor of a Binary Search Tree' ,
1336
1336
url :
1337
1337
'https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/' ,
1338
- pattern : 'Tree Depth First Search ' ,
1338
+ pattern : 'DFS ' ,
1339
1339
difficulty : 'Easy' ,
1340
1340
companies : [ 'LinkedIn' , 'Amazon' , 'Microsoft' ] ,
1341
1341
} ,
1342
1342
{
1343
1343
name : 'Subtree of Another Tree' ,
1344
1344
url : 'https://leetcode.com/problems/subtree-of-another-tree/' ,
1345
- pattern : 'Tree Depth First Search ' ,
1345
+ pattern : 'DFS ' ,
1346
1346
difficulty : 'Easy' ,
1347
1347
companies : [ 'Amazon' , 'Microsoft' , 'Google' ] ,
1348
1348
} ,
1349
1349
{
1350
1350
name : 'Invert Binary Tree' ,
1351
1351
url : 'https://leetcode.com/problems/invert-binary-tree/' ,
1352
- pattern : 'Tree Depth First Search ' ,
1352
+ pattern : 'DFS ' ,
1353
1353
difficulty : 'Easy' ,
1354
1354
companies : [ 'Google' , 'Amazon' ] ,
1355
1355
} ,
1356
1356
{
1357
1357
name : 'Path Sum II' ,
1358
1358
url : 'https://leetcode.com/problems/path-sum-ii/' ,
1359
- pattern : 'Tree Depth First Search ' ,
1359
+ pattern : 'DFS ' ,
1360
1360
difficulty : 'Medium' ,
1361
1361
companies : [ 'Quora' , 'Amazon' , 'Facebook' , 'Google' ] ,
1362
1362
} ,
1363
1363
{
1364
1364
name : 'Path Sum III' ,
1365
1365
url : 'https://leetcode.com/problems/path-sum-iii/' ,
1366
- pattern : 'Tree Depth First Search ' ,
1366
+ pattern : 'DFS ' ,
1367
1367
difficulty : 'Medium' ,
1368
1368
companies : [ 'Quora' , 'Amazon' , 'Bloomberg' ] ,
1369
1369
} ,
1370
1370
{
1371
1371
name : 'Lowest Common Ancestor of a Binary Tree' ,
1372
1372
url :
1373
1373
'https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree/' ,
1374
- pattern : 'Tree Depth First Search ' ,
1374
+ pattern : 'DFS ' ,
1375
1375
difficulty : 'Medium' ,
1376
1376
companies : [
1377
1377
'Amazon' ,
@@ -1388,22 +1388,22 @@ export default [
1388
1388
{
1389
1389
name : 'Maximum Binary Tree' ,
1390
1390
url : 'https://leetcode.com/problems/maximum-binary-tree/' ,
1391
- pattern : 'Tree Depth First Search ' ,
1391
+ pattern : 'DFS ' ,
1392
1392
difficulty : 'Medium' ,
1393
1393
companies : [ 'Amazon' ] ,
1394
1394
} ,
1395
1395
{
1396
1396
name : 'Maximum Width of Binary Tree' ,
1397
1397
url : 'https://leetcode.com/problems/maximum-width-of-binary-tree/' ,
1398
- pattern : 'Tree Depth First Search ' ,
1398
+ pattern : 'DFS ' ,
1399
1399
difficulty : 'Medium' ,
1400
1400
companies : [ 'Google' , 'Bloomberg' , 'Amazon' ] ,
1401
1401
} ,
1402
1402
{
1403
1403
name : 'Construct Binary Tree from Preorder and Inorder Traversal' ,
1404
1404
url :
1405
1405
'https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/' ,
1406
- pattern : 'Tree Depth First Search ' ,
1406
+ pattern : 'DFS ' ,
1407
1407
difficulty : 'Medium' ,
1408
1408
companies : [
1409
1409
'Microsoft' ,
@@ -1417,7 +1417,7 @@ export default [
1417
1417
{
1418
1418
name : 'Validate Binary Search Tree' ,
1419
1419
url : 'https://leetcode.com/problems/validate-binary-search-tree/' ,
1420
- pattern : 'Tree Depth First Search ' ,
1420
+ pattern : 'DFS ' ,
1421
1421
difficulty : 'Medium' ,
1422
1422
companies : [
1423
1423
'Facebook' ,
@@ -1434,21 +1434,21 @@ export default [
1434
1434
{
1435
1435
name : 'Kth Smallest Element in a BST' ,
1436
1436
url : 'https://leetcode.com/problems/kth-smallest-element-in-a-bst/' ,
1437
- pattern : 'Tree Depth First Search ' ,
1437
+ pattern : 'DFS ' ,
1438
1438
difficulty : 'Medium' ,
1439
1439
companies : [ 'Facebook' , 'Oracle' , 'Amazon' , 'Microsoft' ] ,
1440
1440
} ,
1441
1441
{
1442
1442
name : 'Implement Trie (Prefix Tree)' ,
1443
1443
url : 'https://leetcode.com/problems/implement-trie-prefix-tree/' ,
1444
- pattern : 'Tree Depth First Search ' ,
1444
+ pattern : 'DFS ' ,
1445
1445
difficulty : 'Medium' ,
1446
1446
companies : [ 'Amazon' , 'Google' , 'Facebook' , 'Microsoft' ] ,
1447
1447
} ,
1448
1448
{
1449
1449
name : 'Binary Tree Maximum Path Sum' ,
1450
1450
url : 'https://leetcode.com/problems/binary-tree-maximum-path-sum/' ,
1451
- pattern : 'Tree Depth First Search ' ,
1451
+ pattern : 'DFS ' ,
1452
1452
difficulty : 'Hard' ,
1453
1453
companies : [
1454
1454
'Facebook' ,
@@ -1462,7 +1462,7 @@ export default [
1462
1462
{
1463
1463
name : 'Serialize and Deserialize Binary Tree' ,
1464
1464
url : 'https://leetcode.com/problems/serialize-and-deserialize-binary-tree/' ,
1465
- pattern : 'Tree Depth First Search ' ,
1465
+ pattern : 'DFS ' ,
1466
1466
difficulty : 'Hard' ,
1467
1467
companies : [
1468
1468
'Facebook' ,
@@ -1479,7 +1479,7 @@ export default [
1479
1479
{
1480
1480
name : 'Word Search II' ,
1481
1481
url : 'https://leetcode.com/problems/word-search-ii/' ,
1482
- pattern : 'Tree Depth First Search ' ,
1482
+ pattern : 'DFS ' ,
1483
1483
difficulty : 'Hard' ,
1484
1484
companies : [
1485
1485
'Amazon' ,
0 commit comments