(digits: string[], rng: () => number)
| 21 | } |
| 22 | |
| 23 | export function patternABBB(digits: string[], rng: () => number): string { |
| 24 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
| 25 | return utils.fromDigits([A, B, B, B]) |
| 26 | } |
| 27 | |
| 28 | export function patternAABC(digits: string[], rng: () => number): string { |
| 29 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected