Python Challenge · Learn Python 3
Maximum of a List
The first line is n, the count of numbers. The second line has n space-separated integers. Print the largest one.
Example 1
Input
4
3 9 2 7
Expected Output
9
solution.py
Run the examples to test your code, then Submit to run all hidden tests.