Sha256: 62e4c720e3c9878c149b41573613505b5ec0ba3249d8b0e2db53b3348cd5713a

Contents?: true

Size: 888 Bytes

Versions: 63

Compression:

Stored size: 888 Bytes

Contents

# Pascal's Triangle

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
```

## Running the tests

To run the tests, run the command `busted` from within the exercise directory.

## Further information

For more detailed information about the Lua track, including how to get help if
you're having trouble, please visit the exercism.io [Lua language page](http://exercism.io/languages/lua/about).

## Source

Pascal's Triangle at Wolfram Math World [http://mathworld.wolfram.com/PascalsTriangle.html](http://mathworld.wolfram.com/PascalsTriangle.html)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

63 entries across 63 versions & 1 rubygems

Version Path
trackler-2.2.1.119 tracks/lua/exercises/pascals-triangle/README.md
trackler-2.2.1.118 tracks/lua/exercises/pascals-triangle/README.md
trackler-2.2.1.117 tracks/lua/exercises/pascals-triangle/README.md