1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-19 22:16:57 +02:00
CodeWars/8kyu/beginner_series_ii/solution.kt

2 lines
90 B
Kotlin
Raw Normal View History

fun past(h: Int, m: Int, s: Int): Int = h.times(60).plus(m).times(60).plus(s).times(1000)