mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-07 08:21:41 +08:00
存量题库数据更新
This commit is contained in:
@@ -11,18 +11,18 @@
|
||||
<p>Return <code>"Alice"</code><em> if Alice will win, </em><code>"Bob"</code><em> if Bob will win, or </em><code>"Tie"</code><em> if they will end the game with the same score</em>.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Example 1:</strong></p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> values = [1,2,3,7]
|
||||
<strong>Input:</strong> stoneValue = [1,2,3,7]
|
||||
<strong>Output:</strong> "Bob"
|
||||
<strong>Explanation:</strong> Alice will always lose. Her best move will be to take three piles and the score become 6. Now the score of Bob is 7 and Bob wins.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 2:</strong></p>
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> values = [1,2,3,-9]
|
||||
<strong>Input:</strong> stoneValue = [1,2,3,-9]
|
||||
<strong>Output:</strong> "Alice"
|
||||
<strong>Explanation:</strong> Alice must choose all the three piles at the first move to win and leave Bob with negative score.
|
||||
If Alice chooses one pile her score will be 1 and the next move Bob's score becomes 5. In the next move, Alice will take the pile with value = -9 and lose.
|
||||
@@ -30,10 +30,10 @@ If Alice chooses two piles her score will be 3 and the next move Bob's score
|
||||
Remember that both play optimally so here Alice will choose the scenario that makes her win.
|
||||
</pre>
|
||||
|
||||
<p><strong>Example 3:</strong></p>
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> values = [1,2,3,6]
|
||||
<strong>Input:</strong> stoneValue = [1,2,3,6]
|
||||
<strong>Output:</strong> "Tie"
|
||||
<strong>Explanation:</strong> Alice cannot win this game. She can end the game in a draw if she decided to choose all the first three piles, otherwise she will lose.
|
||||
</pre>
|
||||
|
Reference in New Issue
Block a user