Remove Duplicates from Sorted Array - Leet Code Solution

Gorav Singal

August 26, 2020

TL;DR

Since the array is sorted, duplicates are adjacent. Use a slow pointer for the write position — advance it only when the fast pointer finds a new value. O(n) time.

Remove Duplicates from Sorted Array - Leet Code Solution

Problem Statement

Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.

Note:

  1. We have to return the new length
  2. And, modify the array also

Constraint
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

Examples

# Example 1
   Given nums = [1,1,2],
   Output = 2

# Example 2
   Given nums = [0,0,1,1,1,2,2,3,3,4],
   Output = 5

Solution (Using an extra variable)

First think out loud about the problem.

  • Its a sorted array,
  • And, which means a number which is repeating would occur later after another number.

Code

Lets look at the code

public int removeDuplicates(int[] nums) {
   if (nums == null || nums.length == 0) {
      return 0;
   }
   int num = nums[0];
   int j=1;
   
   for (int i=1; i<nums.length; i++) {
      if (num != nums[i]) {
         num = nums[i];
         
         nums[j] = nums[i];
         j ++;
      }
   }
   
   return j;
   }

Steps

  • We can begin with first index value, save it in a variable.
  • We can keep another variable for storing our index j, which will point to index upto which our array is unique.
  • This index variable will increment after finding a unique value only.
  • And, we need to copy that unique value to our array as well.

Results

Runtime: 0 ms, faster than 100.00% of Java online submissions for Remove Duplicates from Sorted Array.
Memory Usage: 41.1 MB, less than 87.80% of Java online submissions for Remove Duplicates from Sorted Array.

Code without extra variable

public int removeDuplicates2(int[] nums) {
   if (nums == null || nums.length == 0) {
      return 0;
   }
   int j=1;
   for (int i=1; i<nums.length; i++) {
      if (nums[j-1]!= nums[i]) {
         nums[j]= nums[i];
         
         j ++;
      }
   }
   
   return j;
   }
Share

Related Posts

Leetcode Solution - Best Time to Buy and Sell Stock

Leetcode Solution - Best Time to Buy and Sell Stock

Problem Statement You are given an array prices where prices[i] is the price of…

Binary Tree - Level Order Traversal

Binary Tree - Level Order Traversal

Problem Statement Given a Binary tree, print out nodes in level order traversal…

Four Sum - Leet Code Solution

Four Sum - Leet Code Solution

Problem Statement Given an array nums of n integers and an integer target, are…

Leetcode - Rearrange Spaces Between Words

Leetcode - Rearrange Spaces Between Words

Problem Statement You are given a string text of words that are placed among…

Leetcode - Maximum Non Negative Product in a Matrix

Leetcode - Maximum Non Negative Product in a Matrix

Problem Statement You are given a rows x cols matrix grid. Initially, you are…

Leetcode - Split a String Into the Max Number of Unique Substrings

Leetcode - Split a String Into the Max Number of Unique Substrings

Problem Statement Given a string s, return the maximum number of unique…

Latest Posts

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI Video Generation in 2025 — Models, Costs, and How to Build a Cost-Effective Pipeline

AI video generation went from “cool demo” to “usable in production” in 2024-202…

AI Models in 2025 — Cost, Capabilities, and Which One to Use

AI Models in 2025 — Cost, Capabilities, and Which One to Use

Choosing the right AI model is one of the most impactful decisions you’ll make…

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

AI Image Generation in 2025 — Models, Costs, and How to Optimize Spend

Generating one image with AI costs between $0.002 and $0.12. That might sound…

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

AI Coding Assistants in 2025 — Every Tool Compared, and Which One to Actually Use

Two years ago, AI coding meant one thing: GitHub Copilot autocompleting your…

AI Agents Demystified — It's Just Automation With a Better Brain

AI Agents Demystified — It's Just Automation With a Better Brain

Let’s cut through the noise. If you read Twitter or LinkedIn, you’d think “AI…

Supply Chain Security — Protecting Your Software Pipeline

Supply Chain Security — Protecting Your Software Pipeline

In 2024, a single malicious contributor nearly compromised every Linux system on…