Login and get codingYou are given a list of integers. Write code to find the majority and minorty numbers in that list.
Definition: a majority number is the one appearing most frequently, a minority number appears least frequently.
Here is a simple example how it should work:
>>> numbers = [1, 2, 2, 3, 2, 3]
>>> major_n_minor(numbers)
(2, 1)Note - you can assume that there will be only one of each.
Hint: any built-in library that supports convenient and rapid tallies?
198 out of 203 users completed this Bite.
Will you be Pythonista #199 to crack this Bite?
Resolution time: ~23 min. (avg. submissions of 5-240 min.)
Pythonistas rate this Bite 2.56 on a 1-10 difficulty scale.
» You can do it! 😌