Commit f5bc30fa by BellCodeEditor

auto save

parent 40eb12f4
Showing with 12 additions and 0 deletions
from time import time
t=time()
def k(n):
if n == 1:
return 1
sum = n*k(n-1)
return sum
print(k(200))
j=time()
print(j-t)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment