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