Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
"All the Same" solution in Uncategorized category for All the Same by Mateusz_Wryszcz
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
if len(elements) == 0:
return True
first = elements[0]
for element in elements:
if element != first:
return False
return True
print("Example:")
print(all_the_same([1, 1, 1]))
assert all_the_same([1, 1, 1]) == True
assert all_the_same([1, 2, 1]) == False
assert all_the_same([1, 1, 1, 2]) == False
assert all_the_same([2, 1, 1, 1]) == False
assert all_the_same([]) == True
assert all_the_same([1]) == True
print("The mission is done! Click 'Check Solution' to earn rewards!")
Dec. 22, 2022