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
Julia Shlykova -
Ayodeji Ayankola -
Baltasar García Perez-Schofield -
Viraj Lakshitha Bandara -
Top comments (1)
Interesting... And it's fast...