mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<p>You are given an integer array <code>deck</code> where <code>deck[i]</code> represents the number written on the <code>i<sup>th</sup></code> card.</p>
|
|
|
|
<p>Partition the cards into <strong>one or more groups</strong> such that:</p>
|
|
|
|
<ul>
|
|
<li>Each group has <strong>exactly</strong> <code>x</code> cards where <code>x > 1</code>, and</li>
|
|
<li>All the cards in one group have the same integer written on them.</li>
|
|
</ul>
|
|
|
|
<p>Return <code>true</code><em> if such partition is possible, or </em><code>false</code><em> otherwise</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> deck = [1,2,3,4,4,3,2,1]
|
|
<strong>Output:</strong> true
|
|
<strong>Explanation</strong>: Possible partition [1,1],[2,2],[3,3],[4,4].
|
|
</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> deck = [1,1,1,2,2,2,3,3]
|
|
<strong>Output:</strong> false
|
|
<strong>Explanation</strong>: No possible partition.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>1 <= deck.length <= 10<sup>4</sup></code></li>
|
|
<li><code>0 <= deck[i] < 10<sup>4</sup></code></li>
|
|
</ul>
|