Remove solution

This commit is contained in:
Chris Proctor 2023-07-30 17:34:38 -04:00
parent b4f0386d25
commit 208ab7c147
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):