Skip to content

Added tasks 3536-3539 #1974

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
May 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated tags
  • Loading branch information
javadev committed May 6, 2025
commit 78dbbcab86c845340229b8c116eda9b26793b48c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package g3501_3600.s3536_maximum_product_of_two_digits;

// #Easy #2025_05_04_Time_0_ms_(100.00%)_Space_41.45_MB_(28.76%)
// #Easy #Math #Sorting #2025_05_06_Time_1_ms_(95.82%)_Space_40.95_MB_(91.71%)

public class Solution {
public int maxProduct(int n) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package g3501_3600.s3537_fill_a_special_grid;

// #Medium #2025_05_04_Time_2_ms_(100.00%)_Space_87.25_MB_(7.46%)
// #Medium #Array #Matrix #Divide_and_Conquer
// #2025_05_06_Time_2_ms_(100.00%)_Space_87.14_MB_(16.42%)

public class Solution {
public int[][] specialGrid(int n) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package g3501_3600.s3538_merge_operations_for_minimum_travel_time;

// #Hard #2025_05_04_Time_7_ms_(100.00%)_Space_45.31_MB_(79.31%)
// #Hard #Array #Dynamic_Programming #Prefix_Sum
// #2025_05_06_Time_7_ms_(99.32%)_Space_45.14_MB_(87.16%)

@SuppressWarnings({"unused", "java:S1172"})
public class Solution {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package g3501_3600.s3539_find_sum_of_array_product_of_magical_sequences;

// #Hard #2025_05_04_Time_39_ms_(97.56%)_Space_44.79_MB_(87.80%)
// #Hard #Array #Dynamic_Programming #Math #Bit_Manipulation #Bitmask #Combinatorics
// #2025_05_06_Time_39_ms_(95.71%)_Space_44.58_MB_(98.57%)

import java.util.Arrays;

Expand Down