perm & comb

This commit is contained in:
Mert Gör 🇹🇷 2023-06-08 09:15:20 +03:00
parent 3bdd5ff959
commit d4bdd11e31
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,7 @@
import math
result = math.perm(6, 2)
print(result)
result = math.comb(6, 2)
print(result)