Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Creative category for All the Same by DEADPOOL
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
suma = 0
el = 0
for i in elements:
el += 1
if elements[0] == i:
suma += True
else:
suma += False
if suma == el:
return True
else:
return False
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!")
Dec. 10, 2018