Ruby Array Exercises: Check whether a given value appears everywhere in a given array
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:
Output:
true false false
Flowchart:

Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to check whether it contains no 3 or it contains no 5.
Next: Write a Ruby program to check whether an given array contains a 3 next to a 3 or a 5 next to a 5, but not both.
What is the difficulty level of this exercise?