summaryrefslogtreecommitdiff
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)