w3resource

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

Ruby Array: Exercise-34 with Solution

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 Array Exercises: Check whether the number of 2's is greater than the number of 5's of a given array of integers

Ruby Code:

def check_array(nums)
   ctr = 0
   i = 0
   while i < nums.length
        if (nums[i] == 2)
			ctr = ctr + 1
		elsif (nums[i] == 5)
			ctr= ctr - 1
		end
       i += 1
   end
   return (ctr > 0)
end
print check_array([3, 5, 3, 3]),"\n"
print check_array([2, 3, 2, 5]),"\n"
print check_array([2, 2, 5, 5]),"\n"

Output:

false
true
false

Flowchart:

Flowchart: Check whether the number of 2's is greater than the number of 5's of an given array of integers

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?



Follow us on Facebook and Twitter for latest update.