Search Results

0
votes

Simple recursion problem

Here's a recursive combination function using Ruby yield statements: def combinations(values, n) if n.zero? yield [] else combinations(values, n - 1) do |co …