console shows a different expected amount than what is compiled
class Solution:
    def removeDuplicates(self, nums: List[int]) -> int:
       return (len(list(set(nums))))
	   ```
Comments (2)