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
/
a174.py
blob: 4a8a265f194ca91873afca8f106fdce043aa5fd0 (
plain
)
1
2
def
odd_position
(
nums
):
return
all
(
nums
[
i
]
%
2
==
i
%
2
for
i
in
range
(
len
(
nums
)))