mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 14:35:23 +01:00
12 lines
323 B
Python
12 lines
323 B
Python
from .__init__ import *
|
|
|
|
|
|
def permutationFunc(maxlength=20):
|
|
a = random.randint(10, maxlength)
|
|
b = random.randint(0, 9)
|
|
|
|
solution = int(math.factorial(a) / (math.factorial(a - b)))
|
|
problem = "Number of Permutations from {} objects picked {} at a time = ".format(
|
|
a, b)
|
|
return problem, solution
|