Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
lambda all zip solution in Clear category for Ascending List by Phil15
is_ascending = lambda items: all(a < b for a, b in zip(items, items[1:]))
Oct. 13, 2018
Comments: