Skip to content

Commit cafab0b

Browse files
committed
chore: update lc problems: 2682
1 parent 88af327 commit cafab0b

File tree

1 file changed

+2
-2
lines changed
  • solution/2600-2699/2682.Find the Losers of the Circular Game

1 file changed

+2
-2
lines changed

Diff for: solution/2600-2699/2682.Find the Losers of the Circular Game/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<strong>输入:</strong>n = 5, k = 2
3535
<strong>输出:</strong>[4,5]
3636
<strong>解释:</strong>以下为游戏进行情况:
37-
1)第 1 个朋友接球,第 <code>1</code> 个朋友将球传给距离他顺时针方向 2 步的玩家 —— 第 3 个朋友。
37+
1)第 1 个朋友接球,第 1 个朋友将球传给距离他顺时针方向 2 步的玩家 —— 第 3 个朋友。
3838
2)第 3 个朋友将球传给距离他顺时针方向 4 步的玩家 —— 第 2 个朋友。
3939
3)第 2 个朋友将球传给距离他顺时针方向 6 步的玩家 —— 第 3 个朋友。
4040
4)第 3 个朋友接到两次球,游戏结束。
@@ -46,7 +46,7 @@
4646
<strong>输入:</strong>n = 4, k = 4
4747
<strong>输出:</strong>[2,3,4]
4848
<strong>解释:</strong>以下为游戏进行情况:
49-
1)第 1 个朋友接球,第 <code>1</code> 个朋友将球传给距离他顺时针方向 4 步的玩家 —— 第 1 个朋友。
49+
1)第 1 个朋友接球,第 1 个朋友将球传给距离他顺时针方向 4 步的玩家 —— 第 1 个朋友。
5050
2)第 1 个朋友接到两次球,游戏结束。</pre>
5151

5252
<p>&nbsp;</p>

0 commit comments

Comments
 (0)