Question: 
Write a python function to remove two duplicate numbers from a given number of lists.


Model's Code:
def two_unique_nums(lst):
    from collections import Counter
    counts = Counter(lst)
    return [num for num in lst if counts[num] == 1]



Sample Correct Code:
def two_unique_nums(nums):
  return [i for i in nums if nums.count(i)==1]


Asserts:
assert two_unique_nums([1,2,3,2,3,4,5]) == [1, 4, 5]
assert two_unique_nums([1,2,3,2,4,5]) == [1, 3, 4, 5]
assert two_unique_nums([1,2,3,4,5]) == [1, 2, 3, 4, 5]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 572 of 974: 425/572 (74.3006993006993%): success