Skip to content

Commit 4ed8182

Browse files
authored
Merge pull request neetcode-gh#2836 from mdmzfzl/main
Create: 0846-hand-of-straights.c
2 parents 127c9c3 + 25ddce2 commit 4ed8182

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

c/0846-hand-of-straights.c

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
int cmpfunc(const void* a, const void* b) {
2+
return (*(int*)a - *(int*)b);
3+
}
4+
5+
bool isNStraightHand(int* hand, int handSize, int groupSize) {
6+
if (handSize % groupSize != 0) return false;
7+
8+
qsort(hand, handSize, sizeof(int), cmpfunc);
9+
10+
for (int i = 0; i < handSize; i++) {
11+
if (hand[i] == -1) continue;
12+
int k = i;
13+
for (int j = 1; j < groupSize; j++) {
14+
while (k < handSize && hand[i] + j != hand[k]) k++;
15+
if (k == handSize) return false;
16+
hand[k] = -1;
17+
}
18+
}
19+
20+
return true;
21+
}

0 commit comments

Comments
 (0)