First solution in Clear category for All the Same by FromVault13
def all_the_same(elements) -> bool: return len(set(elements)) < 2
June 20, 2018