Not finished but submitting so professor emma can see

This commit is contained in:
mollychi
2025-10-06 22:46:30 -04:00
parent e2c6215c8e
commit c3279a0d88
2 changed files with 13 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ def minimum(data):
def bounds(data):
"Returns a list of the smallest and largest numbers in data"
return [minimum(data),maximum(data)]
return [minimum(data), maximum(data)]
def clamp(value, low, high):
"""Clamps a value to a range from low to high.