[leetcode] 26. 删除排序数组中的重复项
Posted ACBingo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 26. 删除排序数组中的重复项相关的知识,希望对你有一定的参考价值。
一开始各种坐标变换把我绕晕了- -,恶心的水题
class Solution {
public int removeDuplicates(int[] nums) {
if (nums.length == 0) return 0;
int j = 0;
for (int i = 0; i < nums.length; i++)
if (nums[i] != nums[j]) nums[++j] = nums[i];
return ++j;
}
}
以上是关于[leetcode] 26. 删除排序数组中的重复项的主要内容,如果未能解决你的问题,请参考以下文章