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