const sortTypedDecreasing = (a, i, j) => {
    const k = i + 1;
    if (k < j) {
        let t = k;
        const o = a[t];