diff options
Diffstat (limited to 'progs/a935.py')
-rw-r--r-- | progs/a935.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/progs/a935.py b/progs/a935.py new file mode 100644 index 0000000..d39cc29 --- /dev/null +++ b/progs/a935.py @@ -0,0 +1,2 @@ +def two_unique_nums(nums):
+ return [i for i in nums if nums.count(i)==1]
\ No newline at end of file |