Sha256: de7f511ae5ca3f5b5565d0551612e304c741b9eeb561937c63e7a00d868c689f

Contents?: true

Size: 1.64 KB

Versions: 46

Compression:

Stored size: 1.64 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
```


## Getting Started

For installation and learning resources, refer to the
[exercism help page](http://exercism.io/languages/haskell).

## Running the tests

To run the test suite, execute the following command:

```bash
stack test
```

#### If you get an error message like this...

```
No .cabal file found in directory
```

You are probably running an old stack version and need
to upgrade it.

#### Otherwise, if you get an error message like this...

```
No compiler found, expected minor version match with...
Try running "stack setup" to install the correct GHC...
```

Just do as it says and it will download and install
the correct compiler version:

```bash
stack setup
```

## Running *GHCi*

If you want to play with your solution in GHCi, just run the command:

```bash
stack ghci
```

## Feedback, Issues, Pull Requests

The [exercism/haskell](https://github.com/exercism/haskell) repository on
GitHub is the home for all of the Haskell exercises.

If you have feedback about an exercise, or want to help implementing a new
one, head over there and create an issue.  We'll do our best to help you!

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

46 entries across 46 versions & 1 rubygems

Version Path
trackler-2.2.1.20 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.19 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.18 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.17 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.16 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.15 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.14 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.13 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.12 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.11 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.10 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.9 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.8 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.7 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.6 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.5 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.4 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.3 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.2 tracks/haskell/exercises/pascals-triangle/README.md
trackler-2.2.1.1 tracks/haskell/exercises/pascals-triangle/README.md