Discuss / Python / 交作业

交作业

Topic source

Afternoon Tea

#1 Created at ... [Delete] [Delete and Lock User]

def findMinAndMax(L):
if L == []:
return (None, None)
return (min(L),max(L))


  • 1

Reply