Ad
Code
Diff
  • def find_max(arr):
        return max(arr)
    • def find_max(arr):
    • return sorted(arr)[::-1][0]
    • return max(arr)