(digits: string[], rng: () => number)
| 11 | } |
| 12 | |
| 13 | export function patternAAABBB(digits: string[], rng: () => number): string { |
| 14 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
| 15 | return utils.fromDigits([A, A, A, B, B, B]) |
| 16 | } |
| 17 | |
| 18 | export function patternABBABB(digits: string[], rng: () => number): string { |
| 19 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected