(digits: string[], rng: () => number)
| 6 | } |
| 7 | |
| 8 | export function patternAABBCC(digits: string[], rng: () => number): string { |
| 9 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
| 10 | return utils.fromDigits([A, A, B, B, C, C]) |
| 11 | } |
| 12 | |
| 13 | export function patternAAABBB(digits: string[], rng: () => number): string { |
| 14 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected