From b24663b7df30bb7f50d12afccd914b6d2f3e397c Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Sat, 1 Feb 2025 19:37:43 +0200 Subject: [PATCH] update function templates --- exercises/practice/atbash-cipher/src/atbash_cipher.clj | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/exercises/practice/atbash-cipher/src/atbash_cipher.clj b/exercises/practice/atbash-cipher/src/atbash_cipher.clj index a085e7966..563badebe 100644 --- a/exercises/practice/atbash-cipher/src/atbash_cipher.clj +++ b/exercises/practice/atbash-cipher/src/atbash_cipher.clj @@ -1,11 +1,13 @@ (ns atbash-cipher) (defn encode - [s] + "Encodes the given text using the Atbash cipher." + [plaintext] ;; function body ) (defn decode - [s] + "Decodes the given text using the Atbash cipher." + [ciphertext] ;; function body )