Update function_2

This commit is contained in:
Joe James
2020-02-17 11:59:34 -06:00
committed by GitHub
parent e48362318a
commit 7c23c38169

View File

@@ -1,5 +1,5 @@
def solve_quadratic(a, b, c):
inside = b**2 - 4 * a * c
inside = b**2 - (4 * a * c)
if (inside < 0):
return None
elif (inside == 0):