-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkata9.py
67 lines (27 loc) · 830 Bytes
/
kata9.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
55
56
57
58
59
60
61
62
63
64
65
66
67
def pascal(n):
pas = []
previous = []
for i in range(0,n):
current = [1 for i in range(i+1)]
if i>1:
for j in range(1,i):
current[j]= sum(previous[j-1:j+1])
pas.append(current)
previous = current
return pas
print(pascal(7))
def pascal(n):
pas = []
previous = []
for i in range(0,n):
current = [1 for i in range(i+1)]
if i>1:
for j in range(1,i):
current[j]= sum(previous[j-1:j+1])
a = " ".join(str(i) for i in current )
b = "".join(" " for i in range(n-i))
c= "".join([b,a])
pas.append(c)
previous = current
return "\n".join(pas)
print(pascal(5))