File tree Expand file tree Collapse file tree 9 files changed +10
-9
lines changed
s3558_number_of_ways_to_assign_edge_weights_i
s3559_number_of_ways_to_assign_edge_weights_ii
s3562_maximum_profit_from_trading_stocks_with_discounts
s3566_partition_array_into_two_equal_product_subsets
s3567_minimum_absolute_difference_in_sliding_submatrix
s3568_minimum_moves_to_clean_the_classroom
s3569_maximize_count_of_distinct_primes_after_split Expand file tree Collapse file tree 9 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 7
7
Scores
8
8
ORDER BY
9
9
Rank ASC ;
10
-
Original file line number Diff line number Diff line change 8
8
Email
9
9
HAVING
10
10
COUNT (Email) > 1 ;
11
-
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3558_number_of_ways_to_assign_edge_weights_i ;
2
2
3
- // #Medium #Math #Tree #Depth_First_Search #2025_05_27_Time_12_ms_(100.00%)_Space_106.62_MB_(76.01%)
3
+ // #Medium #Math #Depth_First_Search #Tree #2025_05_27_Time_12_ms_(100.00%)_Space_106.62_MB_(76.01%)
4
4
5
5
public class Solution {
6
6
private static int mod = (int ) 1e9 + 7 ;
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3559_number_of_ways_to_assign_edge_weights_ii ;
2
2
3
- // #Hard #Array #Dynamic_Programming #Math #Tree #Depth_First_Search
3
+ // #Hard #Array #Dynamic_Programming #Math #Depth_First_Search #Tree
4
4
// #2025_05_27_Time_138_ms_(64.66%)_Space_133.20_MB_(11.56%)
5
5
6
6
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3562_maximum_profit_from_trading_stocks_with_discounts ;
2
2
3
- // #Hard #Array #Dynamic_Programming #Tree #Depth_First_Search
3
+ // #Hard #Array #Dynamic_Programming #Depth_First_Search #Tree
4
4
// #2025_05_27_Time_27_ms_(100.00%)_Space_45.29_MB_(82.12%)
5
5
6
6
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3566_partition_array_into_two_equal_product_subsets ;
2
2
3
- // #Medium #2025_06_01_Time_0_ms_(100.00%)_Space_42.01_MB_(78.42%)
3
+ // #Medium #Array #Bit_Manipulation #Recursion #Enumeration
4
+ // #2025_06_03_Time_0_ms_(100.00%)_Space_42.45_MB_(36.66%)
4
5
5
6
public class Solution {
6
7
public boolean checkEqualPartitions (int [] nums , long target ) {
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3567_minimum_absolute_difference_in_sliding_submatrix ;
2
2
3
- // #Medium #2025_06_01_Time_7_ms_ (99.65%)_Space_46.08_MB_(10.21 %)
3
+ // #Medium #Array #Sorting #Matrix #2025_06_03_Time_7_ms_ (99.69%)_Space_45.24_MB_(99.03 %)
4
4
5
5
import java .util .Arrays ;
6
6
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3568_minimum_moves_to_clean_the_classroom ;
2
2
3
- // #Medium #2025_06_01_Time_90_ms_(100.00%)_Space_53.82_MB_(99.66%)
3
+ // #Medium #Array #Hash_Table #Breadth_First_Search #Matrix #Bit_Manipulation
4
+ // #2025_06_03_Time_94_ms_(99.86%)_Space_53.76_MB_(99.86%)
4
5
5
6
import java .util .ArrayDeque ;
6
7
import java .util .ArrayList ;
Original file line number Diff line number Diff line change 1
1
package g3501_3600 .s3569_maximize_count_of_distinct_primes_after_split ;
2
2
3
- // #Hard #2025_06_01_Time_294_ms_(96.15%)_Space_76.16_MB_(61.54%)
3
+ // #Hard #Array #Math #Segment_Tree #Number_Theory
4
+ // #2025_06_03_Time_280_ms_(97.30%)_Space_76.62_MB_(52.25%)
4
5
5
6
import java .util .Arrays ;
6
7
import java .util .HashMap ;
You can’t perform that action at this time.
0 commit comments