Problems / Greedy / Hand of Straights
#126 Medium Time O(n log n) Space O(n) Animated

Hand of Straights

Determine if hand can be rearranged into groups of groupSize consecutive cards.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern Greedy choice with a local proof

Commit to the locally best safe choice only after identifying why it cannot block an optimal answer.

Approach: Greedy / MinHeap
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps