From 9ea31935b72538b05f8214260c7d9567710dbfe7 Mon Sep 17 00:00:00 2001 From: klaas Date: Tue, 24 Sep 2024 16:16:54 +0200 Subject: [PATCH] Zeitberechnung korrigiert --- sudoku.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sudoku.py b/sudoku.py index 8ac5ada..a79c244 100644 --- a/sudoku.py +++ b/sudoku.py @@ -61,8 +61,9 @@ def main(): else: print("Nope!") - time1 = time.time() - print(f"{tstart} - {time1} * {time.CLOCKS_PER_SEC}") + time1 = time.time() - tstart + + print(f"{time1}") if __name__ == "__main__": main()