From f41ac82c8d52bd249392156ee6bb20af285dab6e Mon Sep 17 00:00:00 2001 From: Egor Kostan <20955183+ikostan@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:39:53 -0800 Subject: [PATCH] Update solution.py --- kyu_6/encrypt_this/solution.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyu_6/encrypt_this/solution.py b/kyu_6/encrypt_this/solution.py index c9a96a103fe..46c36e08e1a 100644 --- a/kyu_6/encrypt_this/solution.py +++ b/kyu_6/encrypt_this/solution.py @@ -8,6 +8,8 @@ def encrypt_this(text: str) -> str: """ + Encrypt this. + Encrypts each word in the message using the following rules: * The first letter needs to be converted to its ASCII code. * The second letter needs to be switched with the last letter