mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
2 lines
90 B
Kotlin
2 lines
90 B
Kotlin
|
fun past(h: Int, m: Int, s: Int): Int = h.times(60).plus(m).times(60).plus(s).times(1000)
|