摘要: class Solution { public int removeDuplicates(int[] nums) { if(nums.length==0) return 0; int i=0; for(int j=1;j<nums.length;j++) { if(nums[j]!=nums[i]) 阅读全文
posted @ 2019-04-06 21:24 黑小莲花 阅读(103) 评论(0) 推荐(0) 编辑