Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First for "All the Same" solution in Clear category for All the Same by yurimelnyk
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return elements.count(elements[0]) == len(elements) if elements else True
April 9, 2019