First solution in Clear category for Majority by Evgeny_Sergeev
def is_majority(items: list): return items.count(True) > len(items)/2
Sept. 25, 2020