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