avatar

superorange0707

  • Homepage
  • Tag
  • Category
Home 26 - Remove Duplicates from Sorted Array
文章

26 - Remove Duplicates from Sorted Array

Posted 20 days ago
5~7 min read

[26 - Remove Duplicates from Sorted Array]

🔗 LeetCode Link


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.


Idea

use two pointer so we only need to iterate once


Logic

  1. set slow pointer to mark current index
  2. set fast pointer and use it for iterating
  3. use fast pointer to find identical element
  4. move the slow pointer then set the slow pointer = faster pointer

Code (Java - Closed Interval)

class Solution {
    public int removeDuplicates(int[] nums) {
        int slow = 0;

        for(int fast = 0; fast <= nums.length - 1; fast++){
            if(nums[fast] != nums[slow]){
                nums[++slow] = nums[fast];
            }
        }

        // return slow;
        return slow + 1; //return first k element not the index

    }
}
two pointer
two pointer Array Leetcode
Share

Further Reading

Apr 23, 2025

283 - Move Zero

[283 - Move Zero] 🔗 LeetCode Link Problem Description Given an integer array nums, move all 0's to the end of it while maintaining the relative order

Apr 23, 2025

27 - Remove Element

[27 - Remove Element] 🔗 LeetCode Link Problem Description Given an integer array nums and an integer val, remove all occurrences of val in nums in-pl

Apr 23, 2025

26 - Remove Duplicates from Sorted Array

[26 - Remove Duplicates from Sorted Array] 🔗 LeetCode Link Problem Description Given an integer array nums sorted in non-decreasing order, remove the

OLDER

Migrating from Bitbucket to GitLab? Here’s how to keep your teams moving without missing a beat!

NEWER

27 - Remove Element

Recently Updated

  • Migrating Jenkins SCM Using GitLab from Bitbucket: SCM URL Bulk Replacement
  • 283 - Move Zero
  • 27 - Remove Element
  • 26 - Remove Duplicates from Sorted Array
  • Migrating from Bitbucket to GitLab? Here’s how to keep your teams moving without missing a beat!

Trending Tags

Course two pointer Binary Tree Hash SQL Leetcode Error Recording Gitlab Bitbucket Devops

Contents