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 11package g3601_3700.s3620_network_recovery_pathways
22
3+ // #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
4+
35import kotlin.math.max
46import kotlin.math.min
57
6- // #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
7-
88class Solution {
99 private var ans = - 1
1010 private var d = 0
Original file line number Diff line number Diff line change 11package g3601_3700.s3625_count_number_of_trapezoids_ii
22
3- import kotlin.math.abs
4-
53// #Hard #2025_07_21_Time_354_ms_(100.00%)_Space_131.52_MB_(52.31%)
64
5+ import kotlin.math.abs
6+
77class Solution {
88 private class Slope (var dx : Int , var dy : Int ) {
99 override fun equals (other : Any? ): Boolean {
You can’t perform that action at this time.
0 commit comments