Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for All the Same by hpr
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return elements[1:] == elements[:-1]
Sept. 28, 2020