Skip to content

Commit

Permalink
update function templates
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Feb 1, 2025
1 parent 4730148 commit b24663b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions exercises/practice/atbash-cipher/src/atbash_cipher.clj
Original file line number Diff line number Diff line change
@@ -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
)

0 comments on commit b24663b

Please sign in to comment.