samedi 17 juin 2017

Algorithme python combinaison k parmi n

import math as mp

def binom(n,k):
         return(mp.factorial(n)/(mp.factorial(n-k)*mp.factorial(k)))

Aucun commentaire:

Enregistrer un commentaire