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