Find the Winner of the Circular Game 找出游戏的获胜者 Solution f[i] means the winner index of i length circle f[i] = (f[i - 1] + k) % i f[1] == 0 The result is f[n] + 1