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