×

Ruby Tutorial

Ruby Basics

Ruby Control Statements

Ruby Methods

Ruby Classes and Methods

Ruby Arrays

Ruby Sets

Ruby Strings

Ruby Classes & Objects

Ruby Hash

Ruby Tools

Ruby Functions

Ruby Built-in Functions

Misc.

Ruby Programs

Ruby program to find the uncommon elements from two arrays

Last Updated : December 15, 2025

Problem Solution

In this program, we will find the un-common elements of two arrays using the "-" operator and print the result.

Program/Source Code

The source code to find the uncommon elements from two arrays is given below. The given program is compiled and executed successfully.

# Ruby program to find the uncommon elements 
# from two arrays

arr1 = ["RAM","KRISHNA","SHIV","GANESH"];
arr2 = ["KRISHNA","RAM"];

arr3 = arr1 - arr2;
 
print "Uncommon array elements:\n#{arr3}";

Output

Uncommon array elements:
["SHIV", "GANESH"]

Explanation

In the above program, we created 2 arrays arr1, arr2. Then we found the uncommon elements from arrays using the "-" operator and printed the result.

Ruby Arrays Programs »


Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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