From c674ce998dd44572b819b0c848a2f817dd9dbbfe Mon Sep 17 00:00:00 2001 From: Armen Vartan Date: Tue, 2 Dec 2014 14:59:15 -0500 Subject: [PATCH] mario stairs yo --- python/6-triangles-part-2/README.md | 38 +++++++++++++---------------- 1 file changed, 17 insertions(+), 21 deletions(-) diff --git a/python/6-triangles-part-2/README.md b/python/6-triangles-part-2/README.md index 0e61244..9d4908d 100644 --- a/python/6-triangles-part-2/README.md +++ b/python/6-triangles-part-2/README.md @@ -1,24 +1,20 @@ Print a Mario End of Level Stairs -======================================= +================================= -Remember this from Mario? - - -###Create it! - - * - ** - *** - **** - ***** - ****** - ******* - ******** - ********* - ********** - -This triangle is 10 high, but I want the ability to make it as high as I want by setting one variable. You must print this in the console. - -###Stretch -Make it awesome! Download some images and use jQuery to print them and get an actual set of mario stairs on the page. Feel free to remove the printout div or whatever you might have to do to make the images fit. +Remember this from Mario? +![Mario stairs](http://www.nintendoninja.com/images/stairs.png) +Create it! +``` +>>> triangle(10) + * + ** + *** + **** + ***** + ****** + ******* + ******** + ********* +********** +```