Processing math: 100%

def maximum(T):
if T=[]:
return
return max(T[0],maximum(T[1:]))