力扣题解 26th 删除排序数组中的重复项
2021-01-25 01:13
阅读:672
标签:block i+1 思想 java 不同 dup solution length 删除 双指针法/游标思想 定义: i
i为游标,它代表了答案序列的脚步。j用来探测当前序列后面的数字是否与i位置的数字相同,若相同就跳过,若不同就让它覆盖下一位置的元素。 力扣题解 26th 删除排序数组中的重复项 标签:block i+1 思想 java 不同 dup solution length 删除 原文地址:https://www.cnblogs.com/fromneptune/p/12863001.html力扣题解
26th 删除排序数组中的重复项
public class Solution {
public int removeDuplicates(int[] nums) {
if(nums.length == 0) return 0;
int i = 0;
for(int j = 1; j
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:力扣题解 26th 删除排序数组中的重复项
文章链接:http://soscw.com/index.php/essay/46565.html
文章标题:力扣题解 26th 删除排序数组中的重复项
文章链接:http://soscw.com/index.php/essay/46565.html
评论
亲,登录后才可以留言!