Created
May 15, 2017 14:54
-
-
Save kyleburton/456e6dab1c2b92b1a3fa9cac14170674 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(let [chars (-> | |
"01000010 01000101 01000101 01010010" | |
(.split " ") | |
vec) | |
nums (mapv #(Integer/parseInt % 2) | |
chars)] | |
(mapv #(-> % char str) nums)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment