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 supaowl
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return len(set(elements)) <= 1
Oct. 24, 2019