Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Creative category for Expand Intervals by suic
expand_intervals = lambda xs,c=__import__("itertools").chain: list(c.from_iterable(range(l, u+1) for l,u in xs))
April 22, 2019
Comments: