mirror of
https://github.com/Xevion/exercism.git
synced 2026-02-01 06:24:14 -06:00
add bash/clojure/java unworked problem sets
This commit is contained in:
@@ -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)
|
||||
)
|
||||
Reference in New Issue
Block a user