- Notifications
You must be signed in to change notification settings - Fork 152
/
Copy pathpascals_triangle_improved.py
54 lines (35 loc) · 841 Bytes
/
pascals_triangle_improved.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
# using factorial, reduced the time complexity
# of program from O(2^N) to O(N)
deffactorial(n):
ifn<2:
return1
else:
returnn*factorial(n-1)
defcomputeCoefficient(col, row):
returnfactorial(row) // (factorial(col) *factorial(row-col))
# Recusrive method to create the series
defcomputePascal(col, row):
ifcol==roworcol==0:
return1
else:
returncomputeCoefficient(col, row)
# Method to create the triangle for `N` row
defprintTriangle(num):
forrinrange(num):
forcinrange(r+1):
print(str(computePascal(c, r)), end=" ")
print("\n")
printTriangle(10)
"""
Output:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1
1 7 21 35 35 21 7 1
1 8 28 56 70 56 28 8 1
1 9 36 84 126 126 84 36 9 1
"""