Project

General

Profile

Bug #3581 ยป big_combination.rb

Phrogz (Gavin Kistner), 07/17/2010 04:52 AM

 
count = 0
combo = nil
(1..166).to_a.combination(5).each do |c|
count+= 1; combo = c
end
p count, combo
    (1-1/1)