Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for All the Same by ndj_ys
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return len(elements) <= 1 or len(elements) == elements.count(elements[0])
Aug. 11, 2018
Comments: