Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
itertools.starmap solution in Creative category for Majority by Splitter
from itertools import starmap
def is_majority(items: list) -> bool:
counts = starmap(items.count, ((True,), (False,)))
return next(counts) > next(counts)
if __name__ == '__main__':
print("Example:")
print(is_majority([True, True, False, True, False]))
# These "asserts" are used for self-checking and not for an auto-testing
assert is_majority([True, True, False, True, False]) == True
assert is_majority([True, True, False]) == True
assert is_majority([True, True, False, False]) == False
assert is_majority([True, True, False, False, False]) == False
assert is_majority([False]) == False
assert is_majority([True]) == True
assert is_majority([]) == False
print("Coding complete? Click 'Check' to earn cool rewards!")
Feb. 22, 2020