Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for The Most Numbers by jacekgrycza
def max(x):
i=x[0]
for k in x:
if k>i:
i=k
return i
def min(x):
i=x[0]
for k in x:
if k
Oct. 30, 2016