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
/
a409.py
blob: 5a821b3eaa9d8a0b0b04e6dd29c7ffbd0e68d3b0 (
plain
)
1
2
3
4
5
def
test_distinct
(
data
):
if
len
(
data
)
==
len
(
set
(
data
)):
return
True
else
:
return
False
;