Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
[][0] works solution in Clear category for All the Same by rafal.pawlowski
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return all(x==elements[0] for x in elements)
Feb. 22, 2019