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.
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.
Output:
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