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