码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]26 Remove Duplicates from Sorted Array

时间:2015-01-02 16:12:07      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/remove-duplicates-from-sorted-array/

http://fisherlei.blogspot.com/2012/12/leetcode-remove-duplicates-from-sorted.html

public class Solution {
    public int removeDuplicates(int[] A) {
        
        if (A == null || A.length == 0)
            return 0; // Invalid input.
            
        if (A.length == 1)
            return 1;
            
        int len = A.length;
        int newlen = 1;
        int lastv = A[0];
        for (int i = 1 ; i < len ; i ++)
        {
            int curv = A[i];
            if (curv != lastv)
            {
                A[newlen] = curv;
                newlen ++;
                lastv = curv;
            }
        }
        return newlen;
    }
}


[LeetCode]26 Remove Duplicates from Sorted Array

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1598426

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!