Challenge: Create Pascal's triangle (mathematical object) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

Challenge: Create Pascal's triangle (mathematical object)

Output to the screen a working figure of the triangle. Any suitable language 1) Pascal's pattern is generated from the top of the pyramid ie first row 2) Starting with number 1, then 11 seperated by a space as in (1 " ") ,followed that by square of 11 then the cube, etc. /* triangle is a perfectly symmetrical mirror image having a line down through the middle innermost digits */ 3) Bonus if can link the algebraic format for handling each row with expression as 'x' or 'a'

5th Feb 2018, 10:52 AM
Ioannis Alexandros Makropoulos
Ioannis Alexandros Makropoulos - avatar
6 Answers
5th Feb 2018, 11:04 AM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 19
https://code.sololearn.com/csPsjUnODw2J/?ref=app
5th Feb 2018, 1:44 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 9
As pointed out, this has been asked before. However, it gives me a chance to show off a Kotlin version. https://code.sololearn.com/c1jIarDM1zmp https://code.sololearn.com/cxmf2HsD1VY3
5th Feb 2018, 11:33 AM
John Wells
John Wells - avatar
5th Feb 2018, 12:46 PM
Jonathan Pizarra (JS Challenger)
Jonathan Pizarra (JS Challenger) - avatar
+ 3
https://code.sololearn.com/cR3cD5I9SiY8/?ref=app
13th Feb 2018, 1:38 PM
...