Skip to content

Instantly share code, notes, and snippets.

@daifu
Last active December 17, 2015 20:59
Show Gist options
  • Save daifu/5671998 to your computer and use it in GitHub Desktop.
Save daifu/5671998 to your computer and use it in GitHub Desktop.
Remove Duplicates from Sorted Array
/*
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array A = [1,1,2],
Your function should return length = 2, and A is now [1,2].
*/
public class Solution {
public int removeDuplicates(int[] A) {
// Start typing your Java solution below
// DO NOT write main() function
if(A.length == 0) return 0;
int first = A[0];
int cur = 1;
for(int i = 1; i < A.length; i++) {
if(first != A[i]) {
A[cur] = A[i];
first = A[i];
cur++;
}
}
return cur;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment