w3resource

Ruby Array Exercises: Create a new array of length 2 containing the middle two elements from a given array of integers of even length 2 or more

Ruby Array: Exercise-22 with Solution

Write a Ruby program to create a new array of length 2 containing the middle two elements from a given array of integers of even length 2 or more.

Ruby Array Exercises: Create a new array of length 2 containing the middle two elements from a given array  of integers of even length 2 or more

Ruby Code:

def check_array(nums)
    midArr = []
   	half = nums.length/2;
	midArr[0] = nums[half-1];
	midArr[1] = nums[half];
	return midArr;
end
print check_array([1, 3, 5, 4]),"\n"
print check_array([11, 3, 5, 21, 0, -4])  

Output:

[3, 5]
[5, 21]

Flowchart:

Flowchart: Create a new array of length 2 containing the middle two elements from a given array of integers of even length 2 or more

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to compute the sum of two arrays (length 3) and return the array which has the largest sum.
Next: Write a Ruby program to create a new array of length 4 containing all their elements from two array of integers, length 2.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.