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 natalia.rogosch
from typing import List
def all_the_same(elements):
return len(set(elements)) <= 1
Feb. 13, 2023
Comments: