Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Ascending List by _Chico_
from typing import Iterable
def is_ascending(items: Iterable[int]) -> bool:
return items == sorted(items) and len(set(items)) == len(items)
June 6, 2021