this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

todo for another time, perhaps

+7
+7
2023/day05/part2.ts
··· 50 50 const to = from + seedRangeLines[i + 1]; 51 51 seedRanges.push([from, to]); 52 52 } 53 + // TODO: see if there are overlapping ranges we can cut down to reduce the amount of work 54 + // for (const [from, to] of seedRanges) { 55 + // for (const [from2, to2] of seedRanges) { 56 + // if (from === from2 && to === to2) continue; 57 + // if (from >= from2 && ) 58 + // } 59 + // } 53 60 54 61 const rangeMins: number[] = await Promise.all( 55 62 splitRanges(splitRanges(seedRanges)).map(