문제 난이도 : Easy
문제 유형 : Data Structures - String
문제 설명 간략 :
오름차순으로 정렬된 integer 배열의 중복을 제거하라.
제약사항
- 0 <= nums.length <= 3 * 104
- -100 <= nums[i] <= 100
- nums is sorted in non-decreasing order.
자바 풀이
class Solution {
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];
}
}
return index;
}
}
출처