Find the Duplicate Number in the Given Array
Asked 8 months ago
0Comments
6 Views
Find Duplicate Number - medium level in LEETCODE
!
Lets Understand the given Problem Statment !
Given an array of integers nums containing n + 1 integers where each integer is in the range [1, n] inclusive.
You have an array of integers called
nums.
The array contains n + 1
integers.Lets say
n
is 5. This means the array should have 6 numbers, and those numbers can only be between 1 and 5.This means if n is 5, the array has 6 integers.
Example array: [1, 3, 4, 2, 2, 5]
Here, n is 5, so the array has 5 + 1 = 6 numbers.
The Goal:
The goal of this problem is often to find the number that appears more than once.
This method works but there are more efficient ways to solve this problem using advanced techniques
which avoid sorting and work faster, especially for very large arrays.
One simple way to find the duplicate is to sort the array and then look for consecutive numbers that are the same.
Example:
Sort the array: [1, 2, 2, 3, 4, 5]
Look for consecutive duplicates: Here, 2 appears twice.
int findDuplicate(vector<int>& nums) {
sort(nums.begin(),nums.end());
for(int i = 0 ; i<nums.size()-1 ; i++){
if(nums[i] == nums[i+1]){
return nums[i] ;
}
}
return -1 ;
}
Time Complexity is O(NLogN) Which is Not Great !
OPTIMAL APPROCH
Negative Marking Approrch !
Visit and Marking Every Element with respect to its Index !
if We Revisit the Element again which is marked ! then its a Duplicate !
class Solution {
public:
int findDuplicate(vector<int>& nums) {
int answerIndex = -1 ;
for( int i = 0 ; i < nums.size() ; i++){
int currentIndex = abs(nums[i]) ;
//Already Visited
if(nums[currentIndex] < 0){
return currentIndex ;
}
//mark it as Negative !
nums[currentIndex] *= -1 ;
}
return answerIndex ;
}
};
// Second one is Better Approch !
answerIndex
is initialized to -1. This variable is used to store the index of the duplicate number if found.Step-by-Step Explanation:
-
Initialization:
int answerIndex = -1;
answerIndex
is initialized to -1. This variable is used to store the index of the duplicate number if found.
-
Iterating Through the Array:
for (int i = 0; i < nums.size(); i++)
A loop is used to iterate through each element of thenums
array. -
Accessing the Absolute Value of Current Element:
int currentIndex = abs(nums[i]);
currentIndex
is assigned the absolute value of the current element innums
. This is necessary because we might have already marked some elements as negative
-
Checking if the Element at
currentIndex
is Already Visited:if (nums[currentIndex] < 0) { return currentIndex; }
- If the element at
currentIndex
is negative, it means this index has been visited before, indicating a duplicate. Hence,currentIndex
is returned as the duplicate number.
- If the element at
-
Marking the Element as Visited:
nums[currentIndex] *= -1;
- If the element at
currentIndex
is not negative, we mark it as visited by multiplying it by -1, making it negative.
- If the element at
-
Returning the Result:
return answerIndex;
- If no duplicate is found after the loop (which should not happen according to the problem constraints),
answerIndex
is returned, which is -1. However, in the context of the problem, there will always be a duplicate, so this line should theoretically never execute.
- If no duplicate is found after the loop (which should not happen according to the problem constraints),
FINALLY !
Consider the array [1, 3, 4, 2, 2]
.
- Initial array:
[1, 3, 4, 2, 2]
- First iteration (i = 0):
currentIndex = abs(nums[0]) = abs(1) = 1
- Mark
nums[1]
as negative:[1, -3, 4, 2, 2]
- Second iteration (i = 1):
currentIndex = abs(nums[1]) = abs(-3) = 3
- Mark
nums[3]
as negative:[1, -3, 4, -2, 2]
- Third iteration (i = 2):
currentIndex = abs(nums[2]) = abs(4) = 4
- Mark
nums[4]
as negative:[1, -3, 4, -2, -2]
- Fourth iteration (i = 3):
currentIndex = abs(nums[3]) = abs(-2) = 2
- Mark
nums[2]
as negative:[1, -3, -4, -2, -2]
- Fifth iteration (i = 4):
currentIndex = abs(nums[4]) = abs(-2) = 2
- Since
nums[2]
is negative, it means we've seen this index before. - Return
currentIndex = 2
as the duplicate number.
STILL DONT UNDERSTOOD ? ! No Problem
Read Again :)
-
Start by setting a default answer:
- We'll start by assuming that we haven't found any duplicate, so we set
answerIndex
to-1
.
- We'll start by assuming that we haven't found any duplicate, so we set
-
Loop through each element in the array:
- We'll look at each element in the array one by one.
-
Find the index that corresponds to the current element:
- For each number in the array, we'll use its absolute value to find the index it points to.
-
Check if the element at this index has been visited before:
- If the value at the found index is already negative, it means we've visited this index before, indicating a duplicate number.
-
Mark the index as visited:
- If it's not negative, we mark it as visited by multiplying the value at that index by
-1
.
- If it's not negative, we mark it as visited by multiplying the value at that index by
-
Return the duplicate number if found:
- If we find a negative value at the index, we return that index as the duplicate number.
Share