Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
in set solution in Clear category for All the Same by oduvan
def all_the_same(elements):
# your code here
return len(set(elements)) in (0, 1)
Jan. 29, 2018
Comments: