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