Pascal's Triangle
Introduction
In mathematics, Pascal's triangle is a triangular array of binomial coefficients.
below you can see what it looks like.
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
How to Build it?
First of all start with "1" and the second row as "1 1" then...
iamprogrammer.hashnode.dev4 min read