def remove_duplicates(nums)
nums.uniq!
return nums.length
end
First, use uniq!
to remove all the duplicates in nums
. Then return its length.
Time complexity: O(n)
Extra memory: O(1)
def remove_duplicates(nums)
nums.uniq!
return nums.length
end
First, use uniq!
to remove all the duplicates in nums
. Then return its length.
Time complexity: O(n)
Extra memory: O(1)
For further actions, you may consider blocking this person and/or reporting abuse
Davide Santangelo -
Rob Race -
Given Ncube -
Lucian Ghinda -
Top comments (1)
Interesting... And it's fast...