Sha256: 3cb77d26c4bdfd75820a3cc708a01fcf30eb87caa878576a8158e650793b5d7f
Contents?: true
Size: 715 Bytes
Versions: 51
Compression:
Stored size: 715 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 ``` To run the tests: ```sh $ gradle test ``` For more detailed info about the Java track see the [help page](http://exercism.io/languages/java). ## 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
51 entries across 51 versions & 1 rubygems