Skip to content
Programmingoneonone
Programmingoneonone
  • CS Subjects
    • Internet of Things (IoT)
    • Digital Communication
    • Human Values
    • Cybersecurity
  • Programming Tutorials
    • C Programming
    • Data structures and Algorithms
    • 100+ Java Programs
    • 100+ C Programs
  • HackerRank Solutions
    • HackerRank Algorithms Solutions
    • HackerRank C problems solutions
    • HackerRank C++ problems solutions
    • HackerRank Java problems solutions
    • HackerRank Python problems solutions
Programmingoneonone
Programmingoneonone

Leetcode Remove Duplicates from Sorted Array problem solution

YASH PAL, 31 July 202418 January 2026

In this Leetcode Remove Duplicates from Sorted Array problem solution, we have 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.

Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.

Return k after placing the final result in the first k slots of nums. Do not allocate extra space for another array. You must do this by modifying the input array in place with O(1) extra memory.

Leetcode Remove Duplicates from Sorted Array problem solution

Leetcode Remove Duplicates from Sorted Array problem solution in Python.

class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
        p = 0 
        q = 1
        while q < len(nums):
            if nums[q] != nums[p]:
                nums[p+1] = nums[q]
                p += 1
            q += 1
        return p + 1

Remove Duplicates from Sorted Array problem solution in Java.

public int removeDuplicates(int[] nums) {
        if(nums == null || nums.length == 0)
        {
            return 0;
        }
        
        int slow = 0;
        int fast = 1;
        int currentValue = nums[0];
        
        while(fast < nums.length)
        {
            while(fast < nums.length && nums[fast] == currentValue)
            {
                fast++;
            }
            
            if(fast < nums.length)
            {
                slow++;
                nums[slow] = nums[fast];
                currentValue = nums[fast];
            }
        }
        return slow+1;
    }

Problem solution in C++.

class Solution {
public:
    int removeDuplicates(vector<int>& nums) {
        if (nums.empty())
            return 0;
        
        int last = 0;
        for (int i = 1; i < nums.size(); ++i) {
            if (nums[i] != nums[last]) {
                ++last;
                nums[last] = nums[i];
            }
        }

        nums.resize(last+1);
        return nums.size();
    }
};

Problem solution in C.

int removeDuplicates(int* nums, int numsSize){
    if(nums == NULL || numsSize < 2)
    {
        return numsSize;
    }
    
    int len = 0, i = 1;
    while(i < numsSize)
    {
        if(nums[i] > nums[len])
        {
            len++;
            nums[len] = nums[i];
        }
        i++;
    }
    
    return 1 + len;
}

coding problems solutions Leetcode Problems Solutions Leetcode

Post navigation

Previous post
Next post

Leave a Reply

Your email address will not be published. Required fields are marked *

Are you a student and stuck with your career or worried about real-time things, and don't know how to manage your learning phase? Which profession to choose? and how to learn new things according to your goal, and land a dream job. Then this might help to you.

Hi My name is YASH PAL, founder of this Blog and a Senior Software engineer with 5+ years of Industry experience. I personally helped 40+ students to make a clear goal in their professional lives. Just book a one-on-one personal call with me for 30 minutes for just 7 dollars. Ask all your career-related questions to set a clear roadmap for your professional life.

Book session - https://wa.me/qr/JQ2LAS7AASE2M1

Pages

  • About US
  • Contact US
  • Privacy Policy

Follow US

  • YouTube
  • LinkedIn
  • Facebook
  • Pinterest
  • Instagram
©2026 Programmingoneonone | WordPress Theme by SuperbThemes