79343325

Date: 2025-01-09 16:13:35
Score: 1.5
Natty:
Report link

Thanks to sympy, this task would be easy for it.

from sympy import solve, Symbol
x = Symbol('x')
a, b, c, d = (1, 0, -0.8, -0.14) #(0.2 - 1.0 = -0.8), (-0.7 * 0.2 = -0.14)
print(solve(a * x ** 3 + b * x ** 2 + c * x + d))
Reasons:
  • Blacklisted phrase (0.5): Thanks
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Tegah D Oweh