Sha256: 5b5cf37d5cda5dcf4169b1b32415b568faee5e021fb828817e88c59c91044c39
Contents?: true
Size: 255 Bytes
Versions: 83
Compression:
Stored size: 255 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. ```plain 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 # ... etc ```
Version data entries
83 entries across 83 versions & 1 rubygems