Tagged Questions
4
votes
5answers
603 views
Most elegant combinations of elements in F#
One more question about most elegant and simple implementation of element combinations in F#.
It should return all combinations of input elements (either List or Sequence).
First argument is number ...
2
votes
5answers
336 views
All picks of a list in F# - more elegant and simple
Could someone propose better and/or more elegant implementation of this:
let each xs =
let rec each' acc left right =
match right with
| [] -> acc
| right -> let ...