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?
206 out of 211 users completed this Bite.
Will you be the 207th person to crack this Bite?
Resolution time: ~23 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 2.56 on a 1-10 difficulty scale.
» You can do it! 😌