Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short and simple solution in Clear category for Ascending List by likewind
def is_ascending(items):
return sorted(items) == items and len(set(items)) == len(items)
Oct. 19, 2018
Comments: