index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a935.py
blob: d39cc2916e23bb5c526669a77e91281da7583b1b (
plain
)
1
2
def
two_unique_nums
(
nums
):
return
[
i
for
i
in
nums
if
nums
.
count
(
i
)
==
1
]