Merge branch 'main' into solution

This commit is contained in:
Chris Proctor 2023-07-30 17:34:45 -04:00
commit 966af3b529
1 changed files with 0 additions and 2 deletions

View File

@ -32,8 +32,6 @@ def ratio(value, start, end):
def scale(value, domain_min, domain_max, range_min, range_max):
"Given a value within a domain, returns the scaled equivalent within range."
ratio = (value - domain_min) / (domain_max - domain_min)
return range_min + ratio * (range_max - range_min)
raise NotImplementedError
def get_x_values(points):