@m_seki の

I like ruby tooから引っ越し

nCm

30枚から7枚選ぶ組合せは。

def nCm(n, m)
  fact = Fact.new
  fact[n].div(fact[m] * fact[n - m])
end

p nCm(30, 7)