-
Code def find_max(arr): max = 0 for i in range(len(arr)): if arr[i] > max: max = arr[i] return max
Test Cases # TODO: Replace examples and use TDD by writing your own tests # These are some of the methods available: # test.expect(boolean, [optional] message) # test.assert_equals(actual, expected, [optional] message) # test.assert_not_equals(actual, expected, [optional] message) # You can use Test.describe and Test.it to write BDD style test groupings test.assert_equals(find_max([1, 2, 3, 4, 5]), 5)
Output:
-
Code - def find_max(arr):
return 0- max = 0
- for i in range(len(arr)):
- if arr[i] > max:
- max = arr[i]
- return max
- All
- {{group.name}} ({{group.count}})
This comment has been reported as {{ abuseKindText }}.
Show
This comment has been hidden. You can view it now .
This comment can not be viewed.
- |
- Reply
- Edit
- View Solution
- Expand 1 Reply Expand {{ comments?.length }} replies
- Collapse
- Remove
- Remove comment & replies
- Report
{{ fetchSolutionsError }}