Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
splice and check solution in Clear category for All the Same by imtiaz.rahi
def all_the_same(elements) -> bool:
return elements[1:] == elements[:-1]
Oct. 30, 2019
Comments: