首页 > 编程语言 > 详细

26. Remove Duplicates from Sorted Array java solutions

时间:2016-05-02 22:48:29      阅读:195      评论:0      收藏:0      [点我收藏+]

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.

Do not allocate extra space for another array, you must do this in place with constant memory.

For example,
Given input array nums = [1,1,2],

Your function should return length = 2, with the first two elements of nums being 1 and 2 respectively. It doesn‘t matter what you leave beyond the new length.

Subscribe to see which companies asked this question

 
 1 public class Solution {
 2     public int removeDuplicates(int[] nums) {
 3         if(nums.length == 0 || nums.length == 1) return nums.length;
 4         int len = 1;
 5         for(int i = 1;i<nums.length;i++){
 6             if(nums[i] != nums[i-1]) nums[len++] = nums[i];
 7         }
 8         return len;
 9     }
10 }

 

26. Remove Duplicates from Sorted Array java solutions

原文:http://www.cnblogs.com/guoguolan/p/5453234.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!