Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for All the Same by Basmala_Azzedine
from typing import List, Any
def all_the_same(elements: List[Any]) -> bool:
EstPareil = False
for x in elements:
for y in elements:
if x == y :
EstPareil = False
else:
EstPareil = True
break
if EstPareil == True:
return False
else:
return True
print("Example:")
print(all_the_same([1, 1, 1]))
# These "asserts" are used for self-checking
assert all_the_same([1, 1, 1]) == True
assert all_the_same([1, 2, 1]) == False
assert all_the_same([1, "a", 1]) == False
assert all_the_same([1, 1, 1, 2]) == False
assert all_the_same([]) == True
assert all_the_same([1]) == True
print("The mission is done! Click 'Check Solution' to earn rewards!")
Feb. 8, 2024