From 9d794771f578e19d258c92b57e1dfbb29c7e2202 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 13:40:17 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20dead=20assignment=20of?= =?UTF-8?q?=20`total=5F1`=20in=20`Super=20factorial.py`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed the unused local variable `total_1` and its reassignments from the `part1` function in `Part-1/Hackerrank/Super factorial.py`, as it did not affect any global state and was never used elsewhere. Behavior of the script is identical. Co-authored-by: ManupaKDU <95234271+ManupaKDU@users.noreply.github.com> --- Part-1/Hackerrank/Super factorial.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Part-1/Hackerrank/Super factorial.py b/Part-1/Hackerrank/Super factorial.py index 104b86e..5869a07 100644 --- a/Part-1/Hackerrank/Super factorial.py +++ b/Part-1/Hackerrank/Super factorial.py @@ -2,13 +2,11 @@ def part1(): n = ass total = 1 - total_1 = total count = n while count > 0 : count -= 1 total *= n n -= 1 - total_1 = total ass = int(input())