I have homework to write a function that will be called with 2 parameters:
a
is a list of numbers.
amount
represents the count of the numbers in the array.
The function should return the number in the list that occurs amount
times.
For example , if a = [5,5,5,3,2,1,1]
, and amount = 2
, the function should return 1
, because there are only two ones in the array. If amount = 3
, the function should return 5
, if amount = 6
, the function will return 0
since there are numbers that occur six time.