asc solution in Clear category for Ascending List by MrPod
is_ascending = lambda d: all(d[i] < d[i+1] for i in range(len(d)-1))
Sept. 8, 2019