Sha256: 032bbd8e89ed3ec611c40e023b81881cf3ab7968f315a90605f6a3e3c55917c1

Contents?: true

Size: 1.06 KB

Versions: 64

Compression:

Stored size: 1.06 KB

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 JavaScript to
install the necessary dependencies:

http://exercism.io/languages/javascript

## Making the Test Suite Pass

Execute the tests with:

    jasmine <exercise-name>.spec.js

Replace `<exercise-name>` with the name of the current exercise. E.g., to
test the Hello World exercise:

    jasmine hello-world.spec.js

In many test suites all but the first test have been skipped.

Once you get a test passing, you can unskip the next one by
changing `xit` to `it`.

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

64 entries across 64 versions & 1 rubygems

Version Path
trackler-2.2.0.5 tracks/javascript/exercises/pascals-triangle/README.md
trackler-2.2.0.4 tracks/javascript/exercises/pascals-triangle/README.md
trackler-2.2.0.3 tracks/javascript/exercises/pascals-triangle/README.md
trackler-2.2.0.2 tracks/javascript/exercises/pascals-triangle/README.md