File tree 3 files changed +6
-3
lines changed
src/main/kotlin/g3501_3600
s3522_calculate_score_after_performing_instructions
s3523_make_array_non_decreasing
s3524_find_x_value_of_array_i
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3522_calculate_score_after_performing_instructions
2
2
3
- // #Medium #2025_04_20_Time_3_ms_(100.00%)_Space_84.28_MB_(81.82%)
3
+ // #Medium #Array #String #Hash_Table #Simulation
4
+ // #2025_04_20_Time_3_ms_(100.00%)_Space_84.28_MB_(81.82%)
4
5
5
6
class Solution {
6
7
fun calculateScore (instructions : Array <String >, values : IntArray ): Long {
Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3523_make_array_non_decreasing
2
2
3
- // #Medium #2025_04_20_Time_4_ms_(75.00%)_Space_80.50_MB_(62.50%)
3
+ // #Medium #Array #Greedy #Stack #Monotonic_Stack
4
+ // #2025_04_20_Time_4_ms_(75.00%)_Space_80.50_MB_(62.50%)
4
5
5
6
class Solution {
6
7
fun maximumPossibleSize (nums : IntArray ): Int {
Original file line number Diff line number Diff line change 1
1
package g3501_3600.s3524_find_x_value_of_array_i
2
2
3
- // #Medium #2025_04_20_Time_12_ms_(100.00%)_Space_71.76_MB_(60.00%)
3
+ // #Medium #Array #Dynamic_Programming #Math
4
+ // #2025_04_20_Time_12_ms_(100.00%)_Space_71.76_MB_(60.00%)
4
5
5
6
class Solution {
6
7
fun resultArray (nums : IntArray , k : Int ): LongArray {
You can’t perform that action at this time.
0 commit comments