Pascal's triangle
Created on Oct. 10, 2020 by josmiley
Write a function that prints Pascal's triangle.
Your function should be named print_pascal_triangle
and accept a single
argument, the height of the triangle.
Your triangle should be properly displayed as a triangle (use spaces) like:
1 2 3 |
|
or:
1 2 3 4 5 6 7 8 9 10 |
|
Perfect alignment is not really possible: you can't align a two digit number under a tree digit number, do your best.
Be aware, if two numbers are touching each other they can't be read, for example this cannot be accepted:
1 2 3 4 5 6 |
|
here the number 51010
should read 5 10 10
.