File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
src/main/kotlin/g3601_3700
s3613_minimize_maximum_component_cost
s3614_process_string_with_special_operations_ii
s3615_longest_palindromic_path_in_graph Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
package g3601_3700.s3613_minimize_maximum_component_cost
2
2
3
- // #Medium #2025_07_14_Time_34_ms_(100.00%)_Space_134.64_MB_(44.44%)
3
+ // #Medium #Binary_Search #Graph #Union_Find #Sort
4
+ // #2025_07_14_Time_34_ms_(100.00%)_Space_134.64_MB_(44.44%)
4
5
5
6
import kotlin.math.max
6
7
Original file line number Diff line number Diff line change 1
1
package g3601_3700.s3614_process_string_with_special_operations_ii
2
2
3
- // #Hard #2025_07_14_Time_37_ms_(100.00%)_Space_50.21_MB_(100.00%)
3
+ // #Hard #String #Simulation # 2025_07_14_Time_37_ms_(100.00%)_Space_50.21_MB_(100.00%)
4
4
5
5
class Solution {
6
6
fun processStr (s : String , k : Long ): Char {
Original file line number Diff line number Diff line change 1
1
package g3601_3700.s3615_longest_palindromic_path_in_graph
2
2
3
- // #Hard #2025_07_14_Time_635_ms_(100.00%)_Space_96.67_MB_(100.00%)
3
+ // #Hard #String #Dynamic_Programming #Bit_Manipulation #Graph
4
+ // #2025_07_14_Time_635_ms_(100.00%)_Space_96.67_MB_(100.00%)
4
5
5
6
import kotlin.math.max
6
7
You can’t perform that action at this time.
0 commit comments