Ruby Array Exercises: Check whether the number of 2's is greater than the number of 5's of a given array of integers
Write a Ruby program to check whether the number of 2's is greater than the number of 5's of a given array of integers.

Ruby Code:
Output:
false true false
Flowchart:

Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to check whether the sum of all the 3's of an given array of integers is exactly 9.
Next: Write a Ruby program to check whether every element is a 3 or a 5 in a given array of integers.
What is the difficulty level of this exercise?