add bash/clojure/java unworked problem sets

This commit is contained in:
Xevion
2020-11-15 09:21:14 -06:00
parent f9e792f483
commit 9269a8f4bf
14 changed files with 303 additions and 0 deletions
@@ -0,0 +1,18 @@
(ns armstrong-numbers)
; (defn armstrong? [num]
; (let [x (clojure.string/split (str num) #"")
; x (mapv read-string x)
; x (mapv #(* % %) x)
; ]
; (
; (prn x)
; )
; )
; )
(defn armstrong? [num] "ye")
(defn main [& args]
(armstrong? 9119)
)