Sha256: 6575e30a94f0102e9cbb195bcfd4eb04da431a77a7e879b0c17d4bfd7d83d84c
Contents?: true
Size: 1019 Bytes
Versions: 59
Compression:
Stored size: 1019 Bytes
Contents
# Pascals 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. ```plain 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 # ... etc ``` ## Setup Go through the setup instructions for ECMAScript to install the necessary dependencies: http://exercism.io/languages/ecmascript ## Requirements Install assignment dependencies: ```bash $ npm install ``` ## Making the test suite pass Execute the tests with: ```bash $ npm test ``` In the test suites all tests but the first have been skipped. Once you get a test passing, you can enable the next one by changing `xtest` to `test`. ## 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
59 entries across 59 versions & 1 rubygems