Skip to content

Commit 0f39403

Browse files
authored
26
1 parent 5143a13 commit 0f39403

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: 26-remove_duplicates_from_arr.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Runtime: 60 ms, faster than 97.83% of Python online submissions for Remove Duplicates from Sorted Array.
1414
Memory Usage: 14.5 MB, less than 55.45% of Python online submissions for Remove Duplicates from Sorted Array.
1515
16-
Godsent solutions:
16+
Godsent solutions:
1717
https://leetcode.com/problems/remove-duplicates-from-sorted-array/discuss/11780/5-lines-C%2B%2BJava-nicer-loops
1818
"""
1919
class Solution(object):
@@ -34,4 +34,4 @@ def removeDuplicates(self, nums):
3434
prev = num
3535

3636
return insert_index
37-
37+

0 commit comments

Comments
 (0)