Skip to content

Instantly share code, notes, and snippets.

@xtrntr
Created August 22, 2016 18:59
Show Gist options
  • Save xtrntr/7ce802882c097cdbe2f671656d97011a to your computer and use it in GitHub Desktop.
Save xtrntr/7ce802882c097cdbe2f671656d97011a to your computer and use it in GitHub Desktop.
(defn char-to-index [c] (- (int c) 97))
(defn index-to-char [n] (char (+ n 97)))
(defn cesar [n] #(char (mod (- (char-index %) n) 26)))
(transduce (map (cesar 10)) str "abc")
;; common reducing functions:
;; str, conj, +, cons, into
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment