< Algorithms | Find maximum. Python (2.7 and 3.6) source code. The code needs to be reviewed. def findmax(a): if len(a) == 0: return 0 curr_max = a[0] for ...
確定! 回上一頁