Find the roots of the equation Ax^3 + Bx^2 + Cx + D = 0. The function is given with the four coefficients A, B, C, D and returns a sorted tuple (x1, x2, x3) of roots.
find_roots(1, 13, -109, 95) ➞ (-19, 1, 5)
find_roots(1, -9, -169, 561) ➞ (-11, 3, 17)
find_roots(16, -80, -416, 1920) ➞ (-5, 4, 6)