First solution in Clear category for All the Same by gp409
def all_the_same(e): e = set(e) if len(e) > 1: return False else: return True
Dec. 9, 2018