Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Group them ALL!!!!11 solution in Clear category for Compress List by quarkov
from itertools import groupby
compress = lambda items: [c[0] for c in groupby(items)]
Feb. 9, 2020