zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    Xshell相关优化
    Inotify+rsync远程实时同步
    MySQL主从复制故障解决
    Docker部署centos7容器
    Salt-ssh批量部署minion
    MySQL数据库二
    防火墙2
    MySQl数据库
    防火墙
    http原理2
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5453234.html
Copyright © 2011-2022 走看看