index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a223.py
blob: 2f0115896ee48766cae37c206b0802ef74d69373 (
plain
)
1
2
3
4
5
def remove_even(l): for i in l: if i % 2 == 0: l.remove(i) return l