(digits: string[], rng: () => number)
| 26 | } |
| 27 | |
| 28 | export function patternAABC(digits: string[], rng: () => number): string { |
| 29 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
| 30 | return utils.fromDigits([A, A, B, C]) |
| 31 | } |
| 32 | |
| 33 | export function patternABBC(digits: string[], rng: () => number): string { |
| 34 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected