-
-
Notifications
You must be signed in to change notification settings - Fork 155
Add a Solution for Removing Duplicates from Sorted Array (LeetCode Problem 26) #402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
ajay-dhangar
merged 2 commits into
codeharborhub:main
from
thevijayshankersharma:0026-solution
Jun 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
147 changes: 147 additions & 0 deletions
147
dsa-solutions/lc-solutions/0000-0099/0026-Remove-Duplicates-from-Sorted-Array.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
--- | ||
id: RemoveDuplicatesFromSortedArray | ||
title: Remove Duplicates from Sorted Array (LeetCode) | ||
sidebar_label: 0026-RemoveDuplicatesFromSortedArray | ||
tags: | ||
- Array | ||
- Two Pointers | ||
description: Given a sorted integer array, remove duplicates in-place and return the new length of the array with unique elements. | ||
--- | ||
|
||
## Problem Description | ||
|
||
| Problem Statement | Solution Link | LeetCode Profile | | ||
| :----------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------ | :------------------------------------------------- | | ||
| [Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | [Remove Duplicates from Sorted Array Solution on LeetCode](https://leetcode.com/problems/remove-duplicates-from-sorted-array/solutions/) | [VijayShankerSharma](https://leetcode.com/u/darkknight648/) | | ||
|
||
### Problem Description | ||
|
||
Given an integer array `nums` sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same. Then return the number of unique elements in `nums`. | ||
|
||
Consider the number of unique elements of `nums` to be `k`, to get accepted, you need to do the following things: | ||
- Change the array `nums` such that the first `k` elements of `nums` contain the unique elements in the order they were present in `nums` initially. | ||
- The remaining elements of `nums` are not important as well as the size of `nums`. | ||
- Return `k`. | ||
|
||
### Custom Judge | ||
|
||
The judge will test your solution with the following code: | ||
|
||
``` | ||
int[] nums = [...]; // Input array | ||
int[] expectedNums = [...]; // The expected answer with correct length | ||
|
||
int k = removeDuplicates(nums); // Calls your implementation | ||
|
||
assert k == expectedNums.length; | ||
for (int i = 0; i < k; i++) { | ||
assert nums[i] == expectedNums[i]; | ||
} | ||
``` | ||
|
||
If all assertions pass, then your solution will be accepted. | ||
|
||
### Examples | ||
|
||
#### Example 1 | ||
|
||
- **Input:** `nums = [1,1,2]` | ||
- **Output:** `2, nums = [1,2,_]` | ||
- **Explanation:** Your function should return `k = 2`, with the first two elements of `nums` being 1 and 2 respectively. It does not matter what you leave beyond the returned `k` (hence they are underscores). | ||
|
||
#### Example 2 | ||
|
||
- **Input:** `nums = [0,0,1,1,1,2,2,3,3,4]` | ||
- **Output:** `5, nums = [0,1,2,3,4,_,_,_,_,_]` | ||
- **Explanation:** Your function should return `k = 5`, with the first five elements of `nums` being 0, 1, 2, 3, and 4 respectively. It does not matter what you leave beyond the returned `k` (hence they are underscores). | ||
|
||
### Constraints | ||
|
||
- `1 <= nums.length <= 3 * 10^4` | ||
- `-100 <= nums[i] <= 100` | ||
- `nums` is sorted in non-decreasing order. | ||
|
||
### Approach | ||
|
||
To solve the problem, we can use the two-pointer technique. Here is the step-by-step approach: | ||
|
||
1. **Initialize Pointers:** | ||
- Use `uniqueIndex` to track the position to place the next unique element. | ||
|
||
2. **Iterate Through the Array:** | ||
- Traverse the array starting from the second element. | ||
- If the current element is different from the element at `uniqueIndex`, move `uniqueIndex` forward and update it with the current element. | ||
|
||
3. **Return Result:** | ||
- The number of unique elements is `uniqueIndex + 1`. | ||
|
||
### Solution Code | ||
|
||
#### Python | ||
|
||
``` | ||
class Solution(object): | ||
def removeDuplicates(self, nums): | ||
if len(nums) == 0: | ||
return 0 | ||
|
||
unique_index = 0 # Pointer for placing unique elements | ||
|
||
for i in range(1, len(nums)): | ||
if nums[i] != nums[unique_index]: | ||
# Found a unique element, place it in the next position | ||
unique_index += 1 | ||
nums[unique_index] = nums[i] | ||
|
||
# The number of unique elements is one more than the index of the last unique element | ||
return unique_index + 1 | ||
``` | ||
|
||
#### Java | ||
``` | ||
class Solution { | ||
public int removeDuplicates(int[] nums) { | ||
if (nums.length == 0) return 0; | ||
|
||
int uniqueIndex = 0; // Pointer for placing unique elements | ||
|
||
for (int i = 1; i < nums.length; i++) { | ||
if (nums[i] != nums[uniqueIndex]) { | ||
// Found a unique element, place it in the next position | ||
uniqueIndex++; | ||
nums[uniqueIndex] = nums[i]; | ||
} | ||
} | ||
|
||
// The number of unique elements is one more than the index of the last unique element | ||
return uniqueIndex + 1; | ||
} | ||
} | ||
``` | ||
|
||
#### C++ | ||
``` | ||
class Solution { | ||
public: | ||
int removeDuplicates(vector<int>& nums) { | ||
if (nums.size() == 0) return 0; | ||
|
||
int uniqueIndex = 0; // Pointer for placing unique elements | ||
|
||
for (int i = 1; i < nums.size(); i++) { | ||
if (nums[i] != nums[uniqueIndex]) { | ||
// Found a unique element, place it in the next position | ||
uniqueIndex++; | ||
nums[uniqueIndex] = nums[i]; | ||
} | ||
} | ||
|
||
// The number of unique elements is one more than the index of the last unique element | ||
return uniqueIndex + 1; | ||
} | ||
}; | ||
``` | ||
|
||
### Conclusion | ||
|
||
The above solution efficiently removes duplicates from a sorted array in-place. It employs a two-pointer technique to achieve a time complexity of $O(N)$ and a space complexity of $O(1)$. This ensures that the algorithm can handle input sizes up to the upper limit specified in the constraints efficiently, providing a simple yet effective approach to solving the problem of removing duplicates from a sorted array. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
change id like
id: remove-duplicates-from-sorted-array