LeetCode/Top150Interview/26RemoveDuplicatesFromSortedArray.py

5 lines
107 B
Python

def removeDuplicates(self, nums):
"""
:type nums: List[int]
:rtype: int
"""