export const min3id: FnN3 = (a, b, c) =>
    a <= b ? (a <= c ? 0 : 2) : b <= c ? 1 : 2;