File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1420,7 +1420,7 @@ const questions = [
1420
1420
id : 118 ,
1421
1421
name : 'Minimum Height Trees' ,
1422
1422
url : 'https://leetcode.com/problems/minimum-height-trees/' ,
1423
- pattern : [ 'BFS' , 'Graph' ] ,
1423
+ pattern : [ 'BFS' , 'Graph' , 'Topological Sort' ] ,
1424
1424
difficulty : 'Medium' ,
1425
1425
premium : false ,
1426
1426
companies : [ 'Google' , 'Amazon' ] ,
@@ -2046,6 +2046,15 @@ const questions = [
2046
2046
premium : true ,
2047
2047
companies : [ 'Oracle' ] ,
2048
2048
} ,
2049
+ {
2050
+ id : 172 ,
2051
+ name : 'Sort Items by Groups Respecting Dependencies' ,
2052
+ url : 'https://leetcode.com/problems/sort-items-by-groups-respecting-dependencies/' ,
2053
+ pattern : [ 'DFS' , 'Graph' , 'Topological Sort' ] ,
2054
+ difficulty : 'Hard' ,
2055
+ premium : false ,
2056
+ companies : [ 'Google' ] ,
2057
+ } ,
2049
2058
] ;
2050
2059
2051
2060
const sortBy = { Easy : 0 , Medium : 1 , Hard : 2 } ;
You can’t perform that action at this time.
0 commit comments