Steven
Results
2
issues of
Steven
Added references to Technical Deep Dive Video and my Machine Learning Blog
def get_distance_between_points(first, second): (x1, y1) = first (x2, y2) = second x_diff = x2 - x1 y_diff = y2 - y1 return math.sqrt(x_diff * x_diff + y_diff * y_diff) #wrong...