8000 Update README.md · abroroo/leetcode@8890b9f · GitHub
[go: up one dir, main page]

Skip to content

Commit 8890b9f

Browse files
authored
Update README.md
1 parent 086cb31 commit 8890b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const removeDuplicates = function(nums) {
1616
if (nums[i] !== nums[uniq]){
1717
// shift uniq to that place
1818
uniq++
19-
// make nums at new uniq equal to nums at i
19+
// set it to new found not duplicate number, which is at i
2020
nums[uniq] = nums[i]
2121
}
2222
}

0 commit comments

Comments
 (0)
0