Last active
March 7, 2017 03:55
-
-
Save Cr4ck3r/320c7b02993b88dc9cdd0eb8ed89f1a5 to your computer and use it in GitHub Desktop.
Revisions
-
Cr4ck3r revised this gist
Mar 7, 2017 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ for n in range(1,101): if n % 3 == 0 and n % 5 == 0: print ("fizzbuzz") elif n % 3 == 0: print ("fizz") elif n % 5 == 0: print ("buzz") else: print (n) -
Cr4ck3r created this gist
Feb 23, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ for n in range(1,101): if n % 3 == 0 and n % 5 == 0: ¦ print ("fizzbuzz") elif n % 3 == 0: ¦ print ("fizz") elif n % 5 == 0: ¦ print ("buzz") else: ¦ print (n)