Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Uncategorized category for All the Same by vvm70
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
return elements[1:] == elements[:-1]
if __name__ == '__main__':
print("Example:")
print(all_the_same([1, 1, 1, 2]))
# These "asserts" are used for self-checking and not for an auto-testing
assert all_the_same([1, 1, 1, 2]) == False
assert all_the_same([1, 2, 1]) == False
assert all_the_same(['a', 'a', 'a']) == True
July 31, 2020