Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Ascending List by dx2-66
from typing import Iterable
def is_ascending(items: Iterable[int]) -> bool:
return items == sorted(list(set(items)))
Dec. 30, 2021
Comments: