Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 10_challenge/10_challenge.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
# print buzz for multiples of 5
# print fizzbuzz for multiples of 3 and 5"
"""
import fizzbuzz
import fizzbuzz as f1

#----START OF SCRIPT
if __name__=='__main__':
fizzbuzz(100)
f1.fizzbuzz(100)