AOC2023: Use the default sort algorithm

This commit is contained in:
Bananymous 2023-12-08 00:10:59 +02:00
parent be657b9b18
commit 7bb3172591
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ i64 puzzle(FILE* fp, bool joker)
));
}
BAN::sort_quick(hands.begin(), hands.end(),
BAN::sort(hands.begin(), hands.end(),
[joker] (const Hand& lhs, const Hand& rhs) {
return hand_score(lhs, joker) < hand_score(rhs, joker);
}