ubsuny / 23-Homework6G1

MIT License
2 stars 7 forks source link

unit test question #75

Open JustinJaniszewski opened 11 months ago

JustinJaniszewski commented 11 months ago

@uarif in the unit test file, I notice it says,

def f_prime(x):
    """
    Calculates the derivative of f(x) = x**2
    """
    return 2*x

Nothing wrong with the function, I'm just curious why it is included.