mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
11 lines
147 B
Go
11 lines
147 B
Go
package main
|
|
|
|
func findTheWinner(n int, k int) int {
|
|
winner := 0
|
|
|
|
for i := 2; i <= n; i++ {
|
|
winner = (winner + k) % i
|
|
}
|
|
|
|
return winner + 1
|
|
}
|