Ruby Array Exercises: Find most occurred item in a given array
Write a Ruby program to find most occurred item in a given array.
Ruby Code:
nums = [10, 20, 30, 40, 10, 10, 20]
print "Original array:\n"
print nums
nums_freq = nums.inject(Hash.new(0)) { |h,v| h[v] += 1; h }
print "\nFrequency of numbers:\n"
print nums_freq
Output:
Original array: [10, 20, 30, 40, 10, 10, 20] Frequency of numbers: {10=>3, 20=>2, 30=>1, 40=>1}
Flowchart:
Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to convert an array into an index hash.
Next: Write a Ruby program to check whether all items are identical in a given array.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics