Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Set length solution in Clear category for All the Same by PythonWithPI
from typing import List
def all_the_same(elements: List) -> bool:
return len(set(elements))<=1
Feb. 9, 2019