w3resource

Ruby Array Exercises: Check whether it contains no 3 or it contains no 5


Write a Ruby program to check whether it contains no 3 or it contains no 5.

Ruby Array Exercises: Check whether it contains no 3 or it contains no 5

Ruby Code:

def check_array(nums)
   noThree = true, noFive = true;
   i = 0;
   while i < nums.length && (noThree || noFive)
        if(nums[i] == 3)
			noThree = false
		elsif(nums[i] == 5)
			noFive = false
		end	
	i = i + 1
   end
   return (noThree || noFive)
end
print check_array([3, 7, 3, 3]),"\n"
print check_array([2, 8, 2, 9]),"\n"
print check_array([3, 8, 5, 9]),"\n"

Output:

true
[true, true]
false

Flowchart:

Flowchart: Check whether it contains no 3 or it contains no 5

Go to:


PREV : Write a Ruby program to check whether every element is a 3 or a 5 in a given array of integers.
NEXT : Write a Ruby program to check whether a given value appears everywhere in an given array. A value is "everywhere" in an array if it presents for every pair of adjacent elements in the array.

Ruby Code Editor:



Contribute your code and comments through Disqus.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.