Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simpler using count solution in Clear category for Majority by thealfest1
def is_majority(items: list) -> bool:
return items.count(True)>items.count(False)
Feb. 20, 2020
Comments: