File tree 5 files changed +5
-5
lines changed
s3446_sort_matrix_by_diagonals
s3447_assign_elements_to_groups_with_constraints
s3448_count_substrings_divisible_by_last_digit
s3449_maximize_the_minimum_game_score
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Write your MySQL query statement below
2
- # #Easy #2025_02_04_Time_451_ms_(70.84%)_Space_0.0_MB_(100.00%)
2
+ # #Easy #Database # 2025_02_04_Time_451_ms_(70.84%)_Space_0.0_MB_(100.00%)
3
3
select user_id, email from users
4
4
where email regexp ' ^[A-Za-z0-9_]+@[A-Za-z][A-Za-z0-9_]*\. com$'
5
5
order by user_id
Original file line number Diff line number Diff line change 1
1
package g3401_3500 .s3446_sort_matrix_by_diagonals ;
2
2
3
- // #Medium #2025_02_09_Time_9_ (100.00%)_Space_45.62_ (100.00%)
3
+ // #Medium #2025_02_09_Time_9_ms_ (100.00%)_Space_45.62_MB_ (100.00%)
4
4
5
5
import java .util .ArrayList ;
6
6
import java .util .Collections ;
Original file line number Diff line number Diff line change 1
1
package g3401_3500 .s3447_assign_elements_to_groups_with_constraints ;
2
2
3
- // #Medium #2025_02_09_Time_527_ (_%)_Space_70.23_ (_%)
3
+ // #Medium #2025_02_09_Time_527_ms_ (_%)_Space_70.23_MB_ (_%)
4
4
5
5
import java .util .HashMap ;
6
6
import java .util .Map ;
Original file line number Diff line number Diff line change 1
1
package g3401_3500 .s3448_count_substrings_divisible_by_last_digit ;
2
2
3
- // #Hard #2025_02_09_Time_20_ (100.00%)_Space_47.10_ (100.00%)
3
+ // #Hard #2025_02_09_Time_20_ms_ (100.00%)_Space_47.10_MB_ (100.00%)
4
4
5
5
@ SuppressWarnings ("java:S107" )
6
6
public class Solution {
Original file line number Diff line number Diff line change 1
1
package g3401_3500 .s3449_maximize_the_minimum_game_score ;
2
2
3
- // #Hard #2025_02_09_Time_278_ (100.00%)_Space_54.25_ (100.00%)
3
+ // #Hard #2025_02_09_Time_278_ms_ (100.00%)_Space_54.25_MB_ (100.00%)
4
4
5
5
public class Solution {
6
6
public long maxScore (int [] points , int m ) {
You can’t perform that action at this time.
0 commit comments