made code

This commit is contained in:
gsanders
2025-10-27 09:48:24 -04:00
parent 9cea020d55
commit 569eb55ef3
2 changed files with 11 additions and 2 deletions

View File

@@ -10,3 +10,5 @@
- ...
- Plot the points.
- ...
make the scatter plot and draw some points on the scatter plot

View File

@@ -8,9 +8,16 @@ def maximum(data):
"Returns the largest number in data"
raise NotImplementedError
def minimum(data):
def minimum(5,10,15):
lowest = None
for number in data:
if lowest is None:
lowest = number
if number < lowest:
lowest = number
return lowest
"Returns the smallest number in data"
raise NotImplementedError
def bounds(data):
"Returns a list of the smallest and largest numbers in data"