Skip to content

Commit 91ddab2

Browse files
authored
Create 0080-remove-duplicates-from-sorted-array-ii.kt
1 parent e35fb56 commit 91ddab2

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Solution {
2+
fun removeDuplicates(nums: IntArray): Int {
3+
4+
var left = 0
5+
var right = 0
6+
7+
while (right < nums.size) {
8+
var count = 1
9+
while(right + 1 < nums.size && nums[right] == nums[right + 1]) {
10+
count++
11+
right++
12+
}
13+
for(i in 0 until minOf(2, count)) {
14+
nums[left] = nums[right]
15+
left++
16+
}
17+
right++
18+
}
19+
20+
return left
21+
}
22+
}

0 commit comments

Comments
 (0)