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
/
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