Skip to content

Commit b615180

Browse files
committed
Updated tags
1 parent 7ab36ba commit b615180

File tree

2 files changed

+4
-4
lines changed
  • src/main/kotlin/g3601_3700

2 files changed

+4
-4
lines changed

src/main/kotlin/g3601_3700/s3620_network_recovery_pathways/Solution.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package g3601_3700.s3620_network_recovery_pathways
22

3+
// #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
4+
35
import kotlin.math.max
46
import kotlin.math.min
57

6-
// #Hard #2025_07_20_Time_18_ms_(100.00%)_Space_120.24_MB_(100.00%)
7-
88
class Solution {
99
private var ans = -1
1010
private var d = 0

src/main/kotlin/g3601_3700/s3625_count_number_of_trapezoids_ii/Solution.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package 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+
77
class Solution {
88
private class Slope(var dx: Int, var dy: Int) {
99
override fun equals(other: Any?): Boolean {

0 commit comments

Comments
 (0)