[LeetCode/Java]Remove Duplicates from Sorted Array

오늘부터 릿코드 시작!
easy인데도 겁나 헤맸다.
솔직히 알고리즘 머리가 부족한 것 같다.
부족한 만큼 열심히 해야지

https://leetcode.com/explore/interview/card/top-interview-questions-easy/92/array/727/


public class Solution1 {

    public int removeDuplicates(int[] nums) {
       int index = 1;

       for(int i = 0; i < nums.length - 1; i ++) {
           if(nums[i] != nums[i + 1]) {
               nums[index] = nums[i + 1];
               index ++;
           }
       }

       return index;
    }
}

엄청 간단한 듯 보이지만,
공간복잡도를 O(1)로 해야하고,
새로운 배열을 위한 공간을 할당해서도 안됐다.

처음에는 당당하게 hash로 풀었지만^^
결국 인터넷 뒤져서 풀었다.
언제쯤 내 스스로 풀 수 있을런지...ㅠㅠ
화이팅이다 내자신!

좋은 웹페이지 즐겨찾기