Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Boolean surprise! solution in Clear category for All the Same by 602
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return len(set(elements)) < 2
July 19, 2018