Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
all(iterable) solution in Speedy category for Ascending List by David_Jones
def is_ascending(items):
return all(items[i] < items[i+1] for i in range(len(items) - 1))
July 1, 2019