From 96168ae3f50292582627611004a057c25842ee29 Mon Sep 17 00:00:00 2001 From: Yuval Yacoby Date: Mon, 15 Dec 2025 13:58:04 +0200 Subject: [PATCH] test --- python/edits.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/edits.py b/python/edits.py index 4ec56b1..206576e 100644 --- a/python/edits.py +++ b/python/edits.py @@ -18,6 +18,7 @@ # find two solutions sol1 = (-b-cmath.sqrt(d))/(2*a) sol2 = (-b+cmath.sqrt(d))/(2*a) +sol23 = (-b+cmath.sqrt(d))/(2*a) print('The solution are {0} and {1}'.format(sol1, sol2))