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