Python/maths/find_max.py

32 lines
710 B
Python
Raw Normal View History

from __future__ import annotations
2018-10-22 18:36:08 +00:00
2019-10-05 05:14:13 +00:00
def find_max(nums: list[int | float]) -> int | float:
"""
>>> for nums in ([3, 2, 1], [-3, -2, -1], [3, -3, 0], [3.0, 3.1, 2.9]):
... find_max(nums) == max(nums)
True
True
True
True
>>> find_max([2, 4, 9, 7, 19, 94, 5])
94
>>> find_max([])
Traceback (most recent call last):
...
ValueError: find_max() arg is an empty sequence
"""
if len(nums) == 0:
raise ValueError("find_max() arg is an empty sequence")
2019-10-28 12:50:36 +00:00
max_num = nums[0]
2018-10-22 18:36:08 +00:00
for x in nums:
2019-10-28 12:50:36 +00:00
if x > max_num:
max_num = x
return max_num
2018-10-22 18:42:08 +00:00
2019-10-05 05:14:13 +00:00
if __name__ == "__main__":
import doctest
doctest.testmod(verbose=True)