码迷,mamicode.com
首页 > 编程语言 > 详细

26. Remove Duplicates from Sorted Array java solutions

时间:2016-05-02 22:49:28      阅读:190      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!