sum and len solution in Clear category for Majority by balintd
is_majority = lambda items: sum(items) > len(items)/2
Jan. 20, 2025
Comments: