Last active
December 17, 2015 20:59
-
-
Save daifu/5671998 to your computer and use it in GitHub Desktop.
Remove Duplicates from Sorted Array
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
/* | |
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