(digits: string[], rng: () => number)
| 31 | } |
| 32 | |
| 33 | export function patternABBC(digits: string[], rng: () => number): string { |
| 34 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
| 35 | return utils.fromDigits([A, B, B, C]) |
| 36 | } |
| 37 | |
| 38 | export function patternMixed4(digits: string[], rng: () => number): string { |
| 39 | const list = [ |
nothing calls this directly
no test coverage detected