Ruby program to remove given element from the array

Ruby Example: Write a program to remove given element from the array.
Submitted by Nidhi, on January 15, 2022

Problem Solution:

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.

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.

Ruby Arrays Programs »




Comments and Discussions!

Load comments ↻





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