Q:

Ruby program to get the flattened 1D array

belongs to collection: Ruby Arrays Programs

0

In this program, we will get the flattened 1D array using flatten() function and print the result.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to get the flattened 1D array is given below. The given program is compiled and executed successfully.

# Ruby program to get the flattened 1D array

arr = ["RAM","KRISHNA","SHIV","GANESH",["KRISHNA","RAM", "MOHAN"]];

fArr = arr.flatten();

print "Flattened 1D array:\n#{fArr}";

Output:

Flattened 1D array:
["RAM", "KRISHNA", "SHIV", "GANESH", "KRISHNA", "RAM", "MOHAN"]

Explanation:

In the above program, we created an array arr with some elements. Then we found the flattened 1D array using flatten() method and print the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Arrays Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to insert an element into the array a... >>
<< Ruby program to find the distinct elements from tw...