exercism-perl5

Repository for my Perl 5 Exercism exercises
git clone git://git.samirparikh.com/exercism-perl5
Log | Files | Refs | README

README.md (645B) - raw


      1 # Pascals Triangle
      2 
      3 Welcome to Pascals Triangle on Exercism's Perl 5 Track.
      4 If you need help running the tests or submitting your code, check out `HELP.md`.
      5 
      6 ## Instructions
      7 
      8 Compute Pascal's triangle up to a given number of rows.
      9 
     10 In Pascal's Triangle each number is computed by adding the numbers to
     11 the right and left of the current position in the previous row.
     12 
     13 ```text
     14     1
     15    1 1
     16   1 2 1
     17  1 3 3 1
     18 1 4 6 4 1
     19 # ... etc
     20 ```
     21 
     22 ## Source
     23 
     24 ### Created by
     25 
     26 - @bistik
     27 
     28 ### Contributed to by
     29 
     30 - @dnmfarrell
     31 - @kytrinyx
     32 - @m-dango
     33 - @rfilipo
     34 
     35 ### Based on
     36 
     37 Pascal's Triangle at Wolfram Math World - http://mathworld.wolfram.com/PascalsTriangle.html