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