diff --git a/python/remove_duplicates_from_sorted_array.py b/python/remove_duplicates_from_sorted_array.py index 117e87c..3820ac7 100644 --- a/python/remove_duplicates_from_sorted_array.py +++ b/python/remove_duplicates_from_sorted_array.py @@ -6,3 +6,4 @@ class Solution: del nums[i] else: current = nums[i] + return len(nums) \ No newline at end of file