Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Ascending List by vnkvstnk
from typing import Iterable
def is_ascending(items: Iterable[int]) -> bool:
return all(x - y < 0 for x,y in zip(items, items[1:]))
May 1, 2020