for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from typing import Any, List
def all_the_same(elements: List[Any]) -> bool:
is_same = all(
[
1 if elements[index + 1] == value else 0
for index, value in enumerate(elements[:-1])
]
)
return is_same
if __name__ == '__main__':
print("Example:")
print(all_the_same([1, 1, 1]))
# These "asserts" are used for self-checking and not for an auto-testing
assert all_the_same([1, 1, 1]) == True
assert all_the_same([1, 2, 1]) == False
assert all_the_same(['a', 'a', 'a']) == True
assert all_the_same([]) == True
assert all_the_same([1]) == True
print("Coding complete? Click 'Check' to earn cool rewards!")