Remove Duplicates from Sorted Array

Posted mymym

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 by modifying the input array in-place with O(1) extra memory.

代码

    public int removeDuplicates(int[] nums) 
    {
        int i = 0;
        for(int n : nums)
        {
            if(i==0||n>nums[i-1])
                nums[i++] = n;
        }
        return i;
    }

因为是有序的数组所以可以通过foreach循环直接进行比较。

以上是关于Remove Duplicates from Sorted Array的主要内容,如果未能解决你的问题,请参考以下文章

leetcode 26. Remove Duplicates from Sorted Array 80. Remove Duplicates from Sorted Array II

26. Remove Duplicates from Sorted Array

26. Remove Duplicates from Sorted Array

26. Remove Duplicates from Sorted Array

#26 Remove Duplicates from Sorted Array

Remove Duplicates from Sorted Array [Python]