File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
s2467_most_profitable_path_in_a_tree
s2471_minimum_number_of_operations_to_sort_a_binary_tree_by_level
s2476_closest_nodes_queries_in_a_binary_search_tree
s2477_minimum_fuel_cost_to_report_to_the_capital
s2492_minimum_score_of_a_path_between_two_cities
s2493_divide_nodes_into_the_maximum_number_of_groups Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2467_most_profitable_path_in_a_tree ;
2
2
3
- // #Medium #Array #Tree #Graph #Depth_First_Search #Breadth_First_Search
3
+ // #Medium #Array #Depth_First_Search #Breadth_First_Search #Tree #Graph
4
4
// #2023_01_11_Time_20_ms_(100.00%)_Space_94_MB_(96.10%)
5
5
6
6
import java .util .Arrays ;
Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2471_minimum_number_of_operations_to_sort_a_binary_tree_by_level ;
2
2
3
- // #Medium #Tree #Binary_Tree #Breadth_First_Search
3
+ // #Medium #Breadth_First_Search #Tree #Binary_Tree
4
4
// #2023_01_24_Time_76_ms_(76.46%)_Space_66_MB_(63.11%)
5
5
6
6
import com_github_leetcode .TreeNode ;
Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2476_closest_nodes_queries_in_a_binary_search_tree ;
2
2
3
- // #Medium #Array #Tree #Binary_Search #Binary_Tree #Depth_First_Search
3
+ // #Medium #Array #Depth_First_Search # Tree #Binary_Search #Binary_Tree
4
4
// #2023_01_24_Time_185_ms_(51.92%)_Space_98.4_MB_(75.00%)
5
5
6
6
import com_github_leetcode .TreeNode ;
Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2477_minimum_fuel_cost_to_report_to_the_capital ;
2
2
3
- // #Medium #Tree #Graph #Breadth_First_Search #Depth_First_Search
3
+ // #Medium #Depth_First_Search #Breadth_First_Search #Tree #Graph
4
4
// #2023_01_25_Time_70_ms_(72.49%)_Space_102.5_MB_(74.76%)
5
5
6
6
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2492_minimum_score_of_a_path_between_two_cities ;
2
2
3
- // #Medium #Graph #Union_Find #Depth_First_Search #Breadth_First_Search
3
+ // #Medium #Depth_First_Search #Breadth_First_Search #Graph #Union_Find
4
4
// #2023_01_27_Time_13_ms_(92.82%)_Space_101.5_MB_(78.71%)
5
5
6
6
import java .util .Arrays ;
Original file line number Diff line number Diff line change 1
1
package g2401_2500 .s2493_divide_nodes_into_the_maximum_number_of_groups ;
2
2
3
- // #Hard #Graph #Union_Find #Breadth_First_Search
3
+ // #Hard #Breadth_First_Search #Graph #Union_Find
4
4
// #2023_01_27_Time_443_ms_(77.02%)_Space_47.8_MB_(77.54%)
5
5
6
6
import java .util .ArrayList ;
You can’t perform that action at this time.
0 commit comments