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