File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/kotlin/g3601_3700
s3620_network_recovery_pathways
s3625_count_number_of_trapezoids_ii Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
package g3601_3700.s3620_network_recovery_pathways
2
2
3
+ // #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
4
+
3
5
import kotlin.math.max
4
6
import kotlin.math.min
5
7
6
- // #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
7
-
8
8
class Solution {
9
9
private var ans = - 1
10
10
private var d = 0
Original file line number Diff line number Diff line change 1
1
package g3601_3700.s3625_count_number_of_trapezoids_ii
2
2
3
- import kotlin.math.abs
4
-
5
3
// #Hard #2025_07_21_Time_354_ms_(100.00%)_Space_131.52_MB_(52.31%)
6
4
5
+ import kotlin.math.abs
6
+
7
7
class Solution {
8
8
private class Slope (var dx : Int , var dy : Int ) {
9
9
override fun equals (other : Any? ): Boolean {
You can’t perform that action at this time.
0 commit comments