Sha256: 2214d3181de8ddc08d2ca73b6b2e71855ee22ea4b6258c44b69f61576dbda088
Contents?: true
Size: 254 Bytes
Versions: 139
Compression:
Stored size: 254 Bytes
Contents
Compute Pascal's triangle up to a given number of rows. In Pascal's Triangle each number is computed by adding the numbers to the right and left of the current position in the previous row. ```text 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 # ... etc ```
Version data entries
139 entries across 139 versions & 1 rubygems