Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
FirstMajority solution in Clear category for Majority by anasstka
def is_majority(items: list) -> bool:
return items.count(True) > items.count(False)
July 14, 2020