0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pythonで組み合わせ関数を作る

Last updated at Posted at 2021-12-11

おはようございます。

本日はpythonで組み合わせ関数を作ってみようと思います。

作り方は3通りあるので、それぞれ作っていきたいと思います。

1つ目はfor文です。

for.py
def combination(n,m):
  value = 1
  for i in range(m):
    value *= (n-i)/(i+1)
  return int(value)

最後にint型に直して整数で値を返すようにします。

2つ目はwhile文です。

while.py
def combination(n,m):
  value = 1
  while m > 0:
    value *= n/m
    n -= 1
    m -= 1
  return int(value)

こちらも同様にint型に直して整数を返すようにします。

そして3つ目は再帰です。(個人的には一番好きです。)

saiki.py
def combination(n,m):
  if m == 0:
    return 1
  return int(n/m * combination(n-1,m-1))

再帰もfor文やwhile文と同様にループのようなものです。
ここでは、m==0になるまで関数を繰り返し呼び出すというプログラムになっています。

以上でpython組み合わせ関数の書き方の説明を終わりたいと思います。

0
0
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?