Skip to content

Commit f469234

Browse files
committed
Fixed format
1 parent bbf5918 commit f469234

File tree

1 file changed

+2
-2
lines changed
  • src/main/kotlin/g0201_0300/s0218_the_skyline_problem

1 file changed

+2
-2
lines changed

src/main/kotlin/g0201_0300/s0218_the_skyline_problem/Solution.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ class Solution {
1414
val totalBuildings = blds.size
1515
val buildings = Array(totalBuildings * 2) { i ->
1616
if (i % 2 == 0) {
17-
Building(blds[i/2][0], blds[i/2][2], true)
17+
Building(blds[i / 2][0], blds[i / 2][2], true)
1818
} else {
19-
Building(blds[i/2][1], blds[i/2][2], false)
19+
Building(blds[i / 2][1], blds[i / 2][2], false)
2020
}
2121
}
2222
buildings.sort()

0 commit comments

Comments
 (0)