LeetCode: Remove Duplicates from Sorted Array I
Question
Given a sorted array nums, remove the duplicates in-place such that each element appears only once and returns the new length.
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
Solution#1
def remove_duplicates(nums)
nums.uniq!
nums.length
end
Solution#2
def remove_duplicates(nums)
nums.each_with_index do |num, i|
while nums[i + 1] == num
nums.delete_at(i)
end
end
nums.length
end
Comments