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