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
/
a880.py
blob: a2fa0b78e298e3cba4ff01e898f62338af9b0ead (
plain
)
1
2
3
4
5
6
def
largest_pos
(
list1
):
max
=
list1
[
0
]
for
x
in
list1
:
if
x
>
max
:
max
=
x
return
max