Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 9x 9x 9x | /** * Interleave the items from all the lists so that the first items are first * in the returned list, the second items are next etc. * Does this in a O(n) fashion, and return lists[0] if there is only one list. * * @param {[]} lists * @returns [] reordered to be breadth first traversal of lists */ export default function interleave(lists) { Iif (!lists || !lists.length) { return []; } if (lists.length === 1) { return lists[0]; } console.time('interleave'); const useLists = [...lists]; const ret = []; for (let i = 0; useLists.length > 0; i++) { for (const list of useLists) { Iif (i >= list.length) { useLists.splice(useLists.indexOf(list), 1); continue; } ret.push(list[i]); } } console.timeEnd('interleave'); return ret; } |