26. Remove Duplicates from Sorted Array java solutions

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 }

 

posted @ 2016-05-02 21:47  Miller1991  阅读(89)  评论(0编辑  收藏  举报