Skip to content

Instantly share code, notes, and snippets.

@bhugueney
Created January 17, 2018 14:03
Show Gist options
  • Save bhugueney/7d931be97c383f84a40879bf9cddf151 to your computer and use it in GitHub Desktop.
Save bhugueney/7d931be97c383f84a40879bf9cddf151 to your computer and use it in GitHub Desktop.
(defn sizes[k n]
(condp = k
n #{(vec (repeat k 1))}
1 #{[n]}
(reduce (fn [res s0]
(reduce #(conj % (sort (conj %2 s0)))
res
(sizes (dec k) (- n s0))))
#{}
(take (- n k)(iterate inc 1)))))
(sizes 3 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment