Home »
Ruby »
Ruby Programs
Ruby program to find the common elements from two arrays
Ruby Example: Write a program to find the common elements from two arrays.
Submitted by Nidhi, on January 12, 2022
Problem Solution:
In this program, we will find the common elements of two arrays using the "&" operator and print the result.
Program/Source Code:
The source code to find the common elements from two arrays is given below. The given program is compiled and executed successfully.
# Ruby program to find the common
# elements from two arrays
arr1 = ["RAM","KRISHNA","SHIV","GANESH"];
arr2 = ["KRISHNA","RAM"];
arr3 = arr1 & arr2;
print "Common array elements:\n#{arr3}";
Output:
Common array elements:
["RAM", "KRISHNA"]
Explanation:
In the above program, we created 2 arrays arr1, arr2. Then we found the common elements from arrays using the "&" operator and printed the result.
Ruby Arrays Programs »