From a8e42ac5325b121663bb61564256196fd22737c5 Mon Sep 17 00:00:00 2001 From: Yuval Yacoby <33892515+yuvalyacoby@users.noreply.github.com> Date: Wed, 24 Dec 2025 16:09:21 +0200 Subject: [PATCH] Revert "Revert "Revert "test (#49)" (#50)" (#51)" This reverts commit 60aac23e0644068a8d5539c423bd351ee59f5830. --- python/edits.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python/edits.py b/python/edits.py index 6606035..51b4b89 100644 --- a/python/edits.py +++ b/python/edits.py @@ -17,9 +17,8 @@ d = (b2 ** 2) - (4 * a * c) # find two solutions -sol1 = (-b-cmath.sqrt(d))/(2*a) -sol2 = (-b+cmath.sqrt(d))/(2*a) -sol23 = (-b+cmath.sqrt(d))/(2*a) +sol1 = (-b2 - cmath.sqrt(d)) / (2 * a) +sol2 = (-b2 + cmath.sqrt(d)) / (2 * a) print('The solution are {0} and {1}'.format(sol1, sol2))