LeetCode 80

原题:

Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice?

For example,
Given sorted array nums = [1,1,1,2,2,3],

Your function should return length = 5, with the first five elements of nums being 1122 and 3. It doesn't matter what you leave beyond the new length.



题意:删除数组中的重复数字,要求同一个数字有两次重复,并返回长度




代码和思路

class Solution {
    public int removeDuplicates(int[] nums) {
        int i = 0;
        for(int n:nums){
            //只有在i小于2(小于两个数) 和 后面的数n大于前面第二个数(因为两数重复)时(因为数组是123递增),才进1,否则i指针不动,判断下一个数。
            if(i<2 || n > nums[i-2]){
                nums[i++] = n;
            }            
        }
        return i;
    }
}
同理如果是要求只能有一个数重复的,那么就 i<1 || n>[i-1]即可  



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值