-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.py
More file actions
41 lines (31 loc) · 697 Bytes
/
Main.py
File metadata and controls
41 lines (31 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# for x in range(1, 11):
# print(f'{x:5b} {x*x:3} ${x*x*x:<5}')
# print(float("nan"))
# print('%c' % 197)
# down=0
# right =0
# def func(m,n):
# if m==1 | n ==1 :
# return 1
# down =+ func(m,n-1)
# right =+ func(m-1,n)
def memoize_coordinates(f):
memory = {}
# This inner function has access to memory
# and 'f'
def inner(m,n):
if (m,n) not in memory:
memory[(m,n)] = f((m,n))
return memory[(m,n)]
return inner
@memoize_coordinates
def func(m,n):
if m==1 or n ==1 :
return 1
elif m==0 or n == 0:
return 0
a=func(m-1, n)
b =func(m, n-1)
return a + b
print(func(18,18))
#2333606220