Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
#8 solution in Clear category for All the Same by Rudeboyz_Squad
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return True if len(set(elements)) < 2 else False
March 4, 2019