Zip solution in Clear category for Ascending List by Krischtopp
def is_ascending(items): return all(a < b for a, b in zip(items, items[1:]))
Jan. 11, 2021