Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Sorted set() solution in Clear category for Ascending List by Adrian_Sanz_Wallace
def is_ascending(items):
return items == sorted(set(items))
March 23, 2021