26.删除排序数组中的重复项
2020-12-13 05:50
标签:rem 图片 turn code 重复 move 删除 remove ++ 26.删除排序数组中的重复项 标签:rem 图片 turn code 重复 move 删除 remove ++ 原文地址:https://www.cnblogs.com/cznczai/p/11150511.html
题目介绍得有点问题 过程是将一组数组进行处理 处理后再返回有几个不同的项 class Solution {
public int removeDuplicates(int[] nums) {
if(nums.length==0)
return 0;
int i=0;
for(int j=0; j
public int removeDuplicates(int[] A) {
if (A.length==0) return 0;
int j=0;
for (int i=0; i