1 line
68 B
Kotlin
Vendored
1 line
68 B
Kotlin
Vendored
fun compare(x: Int, y: Int) = if (x > y) 1 else if (x < y) -1 else 0 |