Discuss / Python / 交作业

交作业

Topic source

def findMinAndMax(L): if not L: return (None, None) return (min(L), max(L))


  • 1

Reply