Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
all(zip()) solution in Clear category for Ascending List by Leonix
def is_ascending(items):
return all(a < b for a, b in zip(items, items[1:]))
July 15, 2019
Comments: