Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All the Same by OleksiyKhomenko
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return len(set(elements)) <= 1
March 17, 2020
Comments: