(digits: string[], rng: () => number)
| 16 | } |
| 17 | |
| 18 | export function patternAAAB(digits: string[], rng: () => number): string { |
| 19 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
| 20 | return utils.fromDigits([A, A, A, B]) |
| 21 | } |
| 22 | |
| 23 | export function patternABBB(digits: string[], rng: () => number): string { |
| 24 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected