Ruby program to get the subarray from an array using a specified range of indices

Ruby Example: Write a program to get the subarray from an array using a specified range of indices.
Submitted by Nidhi, on January 10, 2022

Problem Solution:

In this program, we will create an array of integers with few elements. Then we will get the subarray from the created array using a specified range of indices.

Program/Source Code:

The source code to get the subarray from an array using a specified range of indices is given below. The given program is compiled and executed successfully.

# Ruby program to get the subarray from an array 
# using specified range of indices

arr = [100,101,102,103,104,105,106,107,108,109];
subarr = arr.slice(3,5);

print "Array: ",arr,"\n";
print "Sub Array: ",subarr,"\n";

Output:

Array: [100, 101, 102, 103, 104, 105, 106, 107, 108, 109]
Sub Array: [103, 104, 105, 106, 107]

Explanation:

In the above program, we created an array of integers with few elements. Then we got the subarray from the created array using the slice() method. After that, we printed the elements of array and subarray.

Ruby Arrays Programs »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.