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
/
a10.py
blob: c0e28ad90d8a2d12ebde31a8a6e97e5a0886243a (
plain
)
1
2
3
def
max_of_nth
(
test_list
,
N
):
res
=
max
([
sub
[
N
]
for
sub
in
test_list
])
return
(
res
)