1-liner: shorty solution in Clear category for Ascending List by przemyslaw.daniel
is_ascending = lambda x: sorted(set(x)) == x
Nov. 1, 2018
Comments: