Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for All the Same by tom-tom
def all_the_same(elements):
return all(elements[0] == e for e in elements[1:])
Jan. 30, 2018
Comments: