Monday, November 25, 2013

LeetCode Problem : Remove Duplicates from Sorted Array

Problem


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].

Code

int removeDuplicates(int A[], int n) {
    // Start typing your C/C++ solution below
    // DO NOT write int main() function
    if(n < 2) 
        return n;
    int k = 0;
    for(int i = 1; i < n; ++i){
        if(A[i] != A[k]){
            A[k + 1] = A[i];
            ++k;
        }
    }
    return k + 1;
}

No comments:

Post a Comment