(digits: string[], rng: () => number)
| 1 | import * as utils from './utils' |
| 2 | |
| 3 | export function patternABABAB(digits: string[], rng: () => number): string { |
| 4 | const [A, B] = utils.pickTwoDifferentDigits(digits, rng) |
| 5 | return utils.fromDigits([A, B, A, B, A, B]) |
| 6 | } |
| 7 | |
| 8 | export function patternAABBCC(digits: string[], rng: () => number): string { |
| 9 | const [A, B, C] = utils.pickThreeDifferentDigits(digits, rng) |
nothing calls this directly
no test coverage detected