mirror of
https://github.com/Noratrieb/advent-of-code.git
synced 2026-01-14 17:45:02 +01:00
super
This commit is contained in:
parent
3bb2b43742
commit
4b820360a6
1 changed files with 3 additions and 3 deletions
|
|
@ -60,9 +60,9 @@ mod tests {
|
|||
|
||||
#[test]
|
||||
fn hand_type() {
|
||||
assert_eq!(precompute_more::hand_type_of(*b"32T3K", false), HandType::OnePair);
|
||||
assert_eq!(precompute_more::hand_type_of(*b"K6KK6", false), HandType::FullHouse);
|
||||
assert_eq!(precompute_more::hand_type_of(*b"KTJJT", true), HandType::FourSame);
|
||||
assert_eq!(super::hand_type_of(*b"32T3K", false), HandType::OnePair);
|
||||
assert_eq!(super::hand_type_of(*b"K6KK6", false), HandType::FullHouse);
|
||||
assert_eq!(super::hand_type_of(*b"KTJJT", true), HandType::FourSame);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue