Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 210 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 210 Bytes

Find uncovered ranges for slice of ranges.

For example, given input
[
    [2, 6],
    [9, 12],
    [8, 9],
    [18, 21],
    [4, 7],
    [10, 11],
]
your program should output
[[7 8] [12 18]]