Your question is Quadratic Equation Function. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Galileo Processing uses mathematical rules in parts of its payment-processing logic. Implement a function that computes the real roots of a quadratic equation using the quadratic formula.
Given coefficients a, b, and c for ax² + bx + c = 0, return the real roots in ascending order. If the equation has no real roots, return an empty list. If it has one repeated real root, return that root twice. Round every returned root to 6 decimal places to make floating-point results consistent.
a, b, and c.a is guaranteed to be nonzero, so the equation is quadratic.def quadratic_roots(a, b, c):