Skip to content

Commit 40efbcd

Browse files
committed
#950: description update
1 parent 457234d commit 40efbcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

c-sharp/Problems/queue/RevealCardsInIncreasingOrder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* Example 1:
2222
* Input: deck = [17,13,11,2,3,5,7]
2323
* Output: [2,13,3,11,5,17,7]
24-
* Explanation:
24+
* Explanation:
2525
* We get the deck in the order [17,13,11,2,3,5,7] (this order does not matter), and reorder it.
2626
* After reordering, the deck starts as [2,13,3,11,5,17,7], where 2 is the top of the deck.
2727
* We reveal 2, and move 13 to the bottom. The deck is now [3,11,5,17,7,13].
@@ -39,7 +39,7 @@
3939
*
4040
* Constraints:
4141
* • 1 <= deck.length <= 1000
42-
* • 1 <= deck[i] <= 106
42+
* • 1 <= deck[i] <= 10^6
4343
* • All the values of deck are unique.
4444
**
4545
* https://leetcode.com/problems/reveal-cards-in-increasing-order/

0 commit comments

Comments
 (0)