diff --git a/fizzbuzz.py b/fizzbuzz.py new file mode 100644 index 0000000000000000000000000000000000000000..8f45358c63b4802cae8a7fc827d0ea12c466a5bb --- /dev/null +++ b/fizzbuzz.py @@ -0,0 +1,9 @@ +def fizzbuzz(n:int) -> str: + """ + Write a program that prints the numbers from 1 to 100. + But for multiples of three print "Fizz" instead of the number + And for the multiples of five print "Buzz". + For numbers which are multiples of both three and five print "FizzBuzz". + """ + return "" + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..55b033e901cdda93a26ac64b418f260224260a39 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +pytest \ No newline at end of file