all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
(defn in-sort! [data]
|
||||
(letfn [(insert ([raw x](insert [] raw x))
|
||||
([sorted [y & raw] x]
|
||||
(if (nil? y) (conj sorted x)
|
||||
(if (<= x y ) (concat sorted [x,y] raw)
|
||||
(recur (conj sorted y) raw x )))))]
|
||||
(reduce insert [] data)))
|
||||
;Usage:(in-sort! [6,8,5,9,3,2,1,4,7])
|
||||
;Returns: [1 2 3 4 5 6 7 8 9]
|
||||
Loading…
Add table
Add a link
Reference in a new issue