-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathq026_RemoveDuplicatesFromSortedArray.java
More file actions
40 lines (28 loc) · 1 KB
/
q026_RemoveDuplicatesFromSortedArray.java
File metadata and controls
40 lines (28 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package leetcode_algorithm;
/**
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.
*/
public class q026_RemoveDuplicatesFromSortedArray {
public static void main(String[] args) {
System.out.println(removeDuplicates(new int[]{1 , 1 , 2}));
}
/**
* ½â·¨1 ÍÆ¼ö½â·¨
* @param nums
* @return
*/
public static int removeDuplicates(int[] nums) {
if (nums.length == 0) return 0;
int j = 0;
for(int i = 0;i < nums.length;i++) {
if(nums[i]!=nums[j]){
nums[++j] = nums[i];
}
}
return ++j;
}
}