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