Q:

Ruby program to remove given element from the array

belongs to collection: Ruby Arrays Programs

0

In this program, we will create an array of integers then we will remove a specified element using the delete() method and print the updated array.

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 remove the given element from the array is given below. The given program is compiled and executed successfully.

# Ruby program to remove given 
# element from array

arr = [10,20,30,20,50,30];

item = arr.delete(30);

print "Removed item: \n",item,"\n";
print "Array elements: \n",arr,"\n";

Output:

Removed item: 
30
Array elements: 
[10, 20, 20, 50]

Explanation:

In the above program, we created an array arr with some elements. Then we used the delete() method. The delete() method is used to remove all occurrences of the given element from the array. After that, we print the updated array.

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 filter array elements using the se... >>
<< Ruby program to add an element in the array at the...