整数配列の場合:
- 最初の番号から開始
- n個の位置にジャンプします。nは現在の位置の値です
- 現在の位置を削除し、次の位置を現在の位置にします。
- 残りの番号が1つになるまで手順2に進みます
- その番号を印刷する
ルール
配列は折り返します(配列の最後の数字の次の数字が最初の数字です)。
ゼロはそれ自体を削除します(明らかに)。
負の数は入力として許可されていません。
テストケース
[1] => 1
[1,2] => 1
[1,2,3] => 3
[1,2,2] => 1
[1,2,3,4] => 1
[6,2,3,4] => 4
[1,2,3,4,5] => 5
[0,1] => 1
[0,0,2,0,0] => 0
ステップバイステップの例
[1,4,2,3,5]
^ start from the first position
^ jump 1 position (value of the position)
[1, 2,3,5] remove number in that position
^ take next position of the removed number (the 'new' 'current' position)
^ jump 2 positions
[1, 2,3 ] remove number in that position
^ take next position (looping on the end of the array)
^ jump 1 position
[1, 3 ] remove number in that position
^ take next position (looping)
^ jump 3 positions (looping on the end of the array)
[ 3 ] remove number in that position
print 3
例2
[4,3,2,1,6,3]
^ start from the first position
^ jump 4 positions
[4,3,2,1, 3] remove number in that position
^ take next position
^ jump 3 positions
[4,3, 1, 3] remove number in that position
^ take next position
^ jump 1 positions
[4,3, 1 ] remove number in that position
^ take next position
^ jump 4 positions
[4, 1 ] remove number in that position
^ take next position
^ jump 1 position
[ 1 ] remove number in that position
print 1
これはcode-golfで、バイト単位の最短回答が勝ちです!