Find the only different element in an array
Last Updated :
26 Apr, 2023
Given an array of integers where all elements are same except one element, find the only different element in the array. It may be assumed that the size of the array is at least two.
Examples:
Input : arr[] = {10, 10, 10, 20, 10, 10}
Output : 3
arr[3] is the only different element.
Input : arr[] = {30, 10, 30, 30, 30}
Output : 1
arr[1] is the only different element.
A simple solution is to traverse the array. For every element, check if it is different from others or not. The time complexity of this solution would be O(n*n)
A better solution is to use hashing. We count frequencies of all elements. The hash table will have two elements. We print the element with value (or frequency) equal to 1. This solution works in O(n) time but requires O(n) extra space.
An efficient solution is to first check the first three elements. There can be two cases,
- Two elements are same, i.e., one is different according to given conditions in the question. In this case, the different element is among the first three, so we return the different element.
- All three elements are same. In this case, the different element lies in the remaining array. So we traverse the array from the fourth element and simply check if the value of the current element is different from previous or not.
Below is the implementation of the above idea.
C++
// C++ program to find the only different
// element in an array.
#include <bits/stdc++.h>
using namespace std;
// Function to find minimum range
// increments to sort an array
int findTheOnlyDifferent(int arr[], int n)
{
// Array size must be at least two.
if (n == 1)
return -1;
// If there are two elements, then we
// can return any one element as different
if (n == 2)
return 0;
// Check if the different element is among
// first three
if (arr[0] == arr[1] && arr[0] != arr[2])
return 2;
if (arr[0] == arr[2] && arr[0] != arr[1])
return 1;
if (arr[1] == arr[2] && arr[0] != arr[1])
return 0;
// If we reach here, then first three elements
// must be same (assuming that only one element
// is different.
for (int i = 3; i < n; i++)
if (arr[i] != arr[i - 1])
return i;
return -1;
}
// Driver Code
int main()
{
int arr[] = { 10, 20, 20, 20, 20 };
int n = sizeof(arr) / sizeof(arr[0]);
cout << findTheOnlyDifferent(arr, n);
return 0;
}
Java
// Java program to find the only different
// element in an array.
public class GFG
{
// Function to find minimum range
// increments to sort an array
static int findTheOnlyDifferent(int[] arr, int n)
{
// Array size must be at least two.
if (n == 1)
return -1;
// If there are two elements, then we
// can return any one element as different
if (n == 2)
return 0;
// Check if the different element is among
// first three
if (arr[0] == arr[1] && arr[0] != arr[2])
return 2;
if (arr[0] == arr[2] && arr[0] != arr[1])
return 1;
if (arr[1] == arr[2] && arr[0] != arr[1])
return 0;
// If we reach here, then first three elements
// must be same (assuming that only one element
// is different.
for (int i = 3; i < n; i++)
if (arr[i] != arr[i - 1])
return i;
return -1;
}
// Driver Code
public static void main(String args[])
{
int[] arr = { 10, 20, 20, 20, 20 };
int n = arr.length;
System.out.println(findTheOnlyDifferent(arr, n));
}
// This code is contributed
// by Ryuga
}
Python3
# Python3 program to find the only
# different element in an array.
# Function to find minimum range
# increments to sort an array
def findTheOnlyDifferent(arr, n):
# Array size must be at least two.
if n == 1:
return -1
# If there are two elements,
# then we can return any one
# element as different
if n == 2:
return 0
# Check if the different element
# is among first three
if arr[0] == arr[1] and arr[0] != arr[2]:
return 2
if arr[0] == arr[2] and arr[0] != arr[1]:
return 1
if arr[1] == arr[2] and arr[0] != arr[1]:
return 0
# If we reach here, then first
# three elements must be same
# (assuming that only one element
# is different.
for i in range(3, n):
if arr[i] != arr[i - 1]:
return i
return -1
# Driver Code
if __name__ == "__main__":
arr = [10, 20, 20, 20, 20]
n = len(arr)
print(findTheOnlyDifferent(arr, n))
# This code is contributed
# by Rituraj Jain
JavaScript
// JavaScript program to find the only different
// element in an array.
// Function to find minimum range
// increments to sort an array
function findTheOnlyDifferent(arr, n) {
// Array size must be at least two.
if (n === 1)
return -1;
// If there are two elements, then we
// can return any one element as different
if (n === 2)
return 0;
// Check if the different element is among
// first three
if (arr[0] === arr[1] && arr[0] !== arr[2])
return 2;
if (arr[0] === arr[2] && arr[0] !== arr[1])
return 1;
if (arr[1] === arr[2] && arr[0] !== arr[1])
return 0;
// If we reach here, then first three elements
// must be same (assuming that only one element
// is different.
for (let i = 3; i < n; i++)
if (arr[i] !== arr[i - 1])
return i;
return -1;
}
// Driver Code
const arr = [10, 20, 20, 20, 20];
const n = arr.length;
console.log(findTheOnlyDifferent(arr, n));
C#
// C# program to find the only different
// element in an array.
using System;
class GFG
{
// Function to find minimum range
// increments to sort an array
static int findTheOnlyDifferent(int[] arr, int n)
{
// Array size must be at least two.
if (n == 1)
return -1;
// If there are two elements, then we
// can return any one element as different
if (n == 2)
return 0;
// Check if the different element is among
// first three
if (arr[0] == arr[1] && arr[0] != arr[2])
return 2;
if (arr[0] == arr[2] && arr[0] != arr[1])
return 1;
if (arr[1] == arr[2] && arr[0] != arr[1])
return 0;
// If we reach here, then first three elements
// must be same (assuming that only one element
// is different.
for (int i = 3; i < n; i++)
if (arr[i] != arr[i - 1])
return i;
return -1;
}
// Driver Code
public static void Main()
{
int[] arr = { 10, 20, 20, 20, 20 };
int n = arr.Length;
Console.Write(findTheOnlyDifferent(arr, n));
}
}
// This code is contributed
// by Akanksha Rai
PHP
<?php
// PHP program to find the only different
// element in an array.
// Function to find minimum range
// increments to sort an array
function findTheOnlyDifferent($arr, $n)
{
// Array size must be at least two.
if ($n == 1)
return -1;
// If there are two elements, then we
// can return any one element as different
if ($n == 2)
return 0;
// Check if the different element is among
// first three
if ($arr[0] == $arr[1] && $arr[0] != $arr[2])
return 2;
if ($arr[0] == $arr[2] && $arr[0] != $arr[1])
return 1;
if ($arr[1] == $arr[2] && $arr[0] != $arr[1])
return 0;
// If we reach here, then first three
// elements must be same (assuming that
// only one element is different.
for ($i = 3; $i < $n; $i++)
if ($arr[$i] != $arr[$i - 1])
return $i;
return -1;
}
// Driver Code
$arr = array(10, 20, 20, 20, 20);
$n = sizeof($arr);
echo findTheOnlyDifferent($arr, $n);
// This code is contributed by ajit
?>
Time Complexity: O(n)
Auxiliary Space: O(1)
SECOND APPROACH : Using STL
Another approach to this problem is by using vector method . Like we will simply copy all the element in another array and then we will simply compare the first element of new sorted array with previous one and the index which is not same will be our answer .
Below is the implementation of the above approach :
C++
#include <bits/stdc++.h>
using namespace std;
void solve()
{
int arr[] = { 10, 20, 20, 20, 20 };
int n = sizeof(arr) / sizeof(arr[0]);
int arr2[n];
for(int i=0;i<n;i++)
{
arr2[i]=arr[i];
}
sort(arr2,arr2+n);
for (int i = 0; i < n; i++) {
if (arr[i] != arr2[1]) {
cout << i << "\n";
}
}
}
int main() {
solve();
return 0;
}
Java
// Java program to find the only different
// element in an array.
import java.util.Arrays;
// Function to find minimum range
// increments to sort an array
public class Main {
public static void main(String[] args) {
solve();
}
static void solve() {
int[] arr = {10, 20, 20, 20, 20};
int n = arr.length;
int[] arr2 = Arrays.copyOf(arr, n);
Arrays.sort(arr2);
for (int i = 0; i < n; i++) {
if (arr[i] != arr2[1]) {
System.out.println(i);
}
}
}
}
Python3
# Python3 program to find the only different
# Function to solve the problem
def solve():
# Initialize an array
arr = [10, 20, 20, 20, 20]
n = len(arr)
# Create a copy of the array and sort it
arr2 = arr.copy()
arr2.sort()
# Loop through the original array and print the indices
# of elements that are not equal to the second smallest element
for i in range(n):
if arr[i] != arr2[1]:
print(i)
# Call the solve function
solve()
JavaScript
// Function to find the second smallest element index in an array
function findSecondSmallestIndex(arr) {
let n = arr.length;
// Create a copy of the original array
let arr2 = [...arr];
// Sort the copied array
arr2.sort((a, b) => a - b);
// Loop through the original array
for (let i = 0; i < n; i++) {
// If the current element is not equal to the second smallest element
if (arr[i] !== arr2[1]) {
// Return the index of the current element
return i;
}
}
}
// Test the function
let arr = [10, 20, 20, 20, 20];
let index = findSecondSmallestIndex(arr);
console.log(` ${index}`);
C#
using System;
class MainClass {
public static void Main(string[] args)
{
// Initialize an array
int[] arr = { 10, 20, 20, 20, 20 };
int n = arr.Length;
// Create a copy of the array and sort it
int[] arr2 = new int[n];
Array.Copy(arr, arr2, n);
Array.Sort(arr2);
// Loop through the original array and print the
// indices of elements that are not equal to the
// second smallest element
for (int i = 0; i < n; i++) {
if (arr[i] != arr2[1]) {
Console.WriteLine(i);
}
}
}
}
Time Complexity: O(n)
Auxiliary Space: O(1)
Similar Reads
Find duplicate elements in an array Given an array of n integers. The task is to find all elements that have more than one occurrences. The output should only be one occurrence of a number irrespective of the number of occurrences in the input array.Examples: Input: {2, 10, 10, 100, 2, 10, 11, 2, 11, 2}Output: {2, 10, 11}Input: {5, 40
11 min read
Find sum of non-repeating (distinct) elements in an array Given an integer array with repeated elements, the task is to find the sum of all distinct elements in the array.Examples: Input : arr[] = {12, 10, 9, 45, 2, 10, 10, 45,10};Output : 78Here we take 12, 10, 9, 45, 2 for sumbecause it's distinct elements Input : arr[] = {1, 10, 9, 4, 2, 10, 10, 45 , 4}
14 min read
Find the only non-repeating element in a given array Given an array A[] consisting of N (1 ? N ? 105) positive integers, the task is to find the only array element with a single occurrence. Note: It is guaranteed that only one such element exists in the array. Examples: Input: A[] = {1, 1, 2, 3, 3}Output: 2Explanation: Distinct array elements are {1,
10 min read
Single Element in a Sorted Array Given a sorted array in which all elements appear twice and one element appears only once, the task is to find the element that appears once.Examples: Input: arr[] = {1, 1, 3, 3, 4, 5, 5, 7, 7, 8, 8}Output: 4Explanation: All numbers except 4 occur twice in the array.Input: arr[] = {1, 1, 3, 3, 4, 4,
10 min read
Print sorted distinct elements of array Given an array that might contain duplicates, print all distinct elements in sorted order. Examples: Input : 1, 3, 2, 2, 1Output : 1 2 3Input : 1, 1, 1, 2, 2, 3Output : 1 2 3The simple Solution is to sort the array first, then traverse the array and print only first occurrences of elements. Algorith
6 min read
Print all Distinct (Unique) Elements in given Array Given an integer array arr[], print all distinct elements from this array. The given array may contain duplicates and the output should contain every element only once.Examples: Input: arr[] = {12, 10, 9, 45, 2, 10, 10, 45}Output: {12, 10, 9, 45, 2}Input: arr[] = {1, 2, 3, 4, 5}Output: {1, 2, 3, 4,
11 min read
Elements that occurred only once in the array Given an array arr that has numbers appearing twice or once. The task is to identify numbers that occur only once in the array. Note: Duplicates appear side by side every time. There might be a few numbers that can occur at one time and just assume this is a right rotating array (just say an array c
15+ min read
Find the two repeating elements in a given array Given an array arr[] of N+2 elements. All elements of the array are in the range of 1 to N. And all elements occur once except two numbers which occur twice. Find the two repeating numbers. Examples:Input: arr = [4, 2, 4, 5, 2, 3, 1], N = 5Output: 4 2Explanation: The above array has n + 2 = 7 elemen
15+ min read
Count Distinct ( Unique ) elements in an array Given an array arr[] of length N, The task is to count all distinct elements in arr[]. Examples: Input: arr[] = {10, 20, 20, 10, 30, 10}Output: 3Explanation: There are three distinct elements 10, 20, and 30. Input: arr[] = {10, 20, 20, 10, 20}Output: 2 Naïve Approach: Create a count variable and ru
15 min read
Check if an array contains only one distinct element Given an array arr[] of size N, the task is to check if the array contains only one distinct element or not. If it contains only one distinct element then print âYesâ, otherwise print âNoâ. Examples: Input: arr[] = {3, 3, 4, 3, 3} Output: No Explanation: There are 2 distinct elements present in the
8 min read