Ruby Array Exercises: Check whether first and the last element are the same of a given array of integers
Write a Ruby program to check whether first and the last element are the same of a given array of integers. The array length must be 1 or more.
Ruby Code:
def check_array(nums)
return (nums.length >= 1 && nums[0] == nums[nums.length-1])
end
print check_array([1, 2, 7]),"\n"
print check_array([3, 1, 2, 3]),"\n"
print check_array([14, 7, 1, 2, 3])
Output:
false true false
Flowchart:
Ruby Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Ruby program to pick number of random elements from an given array.
Next: Write a Ruby program to compute the sum of elements in a given array.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics