w3resource

Ruby Array Exercises: Create a new array from the middle of a given array of integers of odd length

Ruby Array: Exercise-25 with Solution

Write a Ruby program to create a new array of length 3 containing the elements from the middle of a given array of integers of odd length (at least 3).

Ruby Array Exercises: Create a new array  from the middle of a given array of integers of odd length

Ruby Code:

def check_array(nums)
    halfArr = [];
	half = nums.length/2;
	halfArr[0] = nums[half-1];
	halfArr[1] = nums[half];
	halfArr[2] = nums[half+1];
	return halfArr;
end

print check_array([1, 3, 4]),"\n"
print check_array([1, 2, 3, 7, 9])  

Output:

[1, 3, 4]
[2, 3, 7]

Flowchart:

Flowchart: Create a new array from the middle of a given array of integers of odd length

Ruby Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Ruby program to swap the first and last elements of a given array of integers, length will be at least 1. Return the modified array.
Next: Write a Ruby program to find the largest value from a given array of integers of odd length. The array length will be a least 1.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.