tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
11
Task/Prime-decomposition/Clojure/prime-decomposition.clj
Normal file
11
Task/Prime-decomposition/Clojure/prime-decomposition.clj
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
;;; No stack consuming algorithm
|
||||
(defn factors
|
||||
"Return a list of factors of N."
|
||||
([n]
|
||||
(factors n 2 ()))
|
||||
([n k acc]
|
||||
(if (= 1 n)
|
||||
acc
|
||||
(if (= 0 (rem n k))
|
||||
(recur (quot n k) k (cons k acc))
|
||||
(recur n (inc k) acc)))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue