From 1a61d46d1d0dc1ee83684344d26473f0b331e70a Mon Sep 17 00:00:00 2001 From: MadhavGupta1506 Date: Sat, 9 Nov 2024 16:25:36 +0530 Subject: [PATCH] Used-list-instead-of-string-in-rot13.py-and-removed-n --- ciphers/rot13.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ciphers/rot13.py b/ciphers/rot13.py index 8b9971487..07be75356 100644 --- a/ciphers/rot13.py +++ b/ciphers/rot13.py @@ -9,7 +9,7 @@ def dencrypt(s: str) -> str: >>> dencrypt(s) == msg True """ - out = [] + out:list[str] = [] n = 13 for c in s: if "A" <= c <= "Z":