From f32d61281d9ac6e898345bb8b80341f25c08c5bf Mon Sep 17 00:00:00 2001
From: "Perez Domingo, Victor" <victor.perez@tecnalia.com>
Date: Wed, 15 Jul 2020 19:52:04 +0200
Subject: [PATCH] add dummy implementation

---
 fizzbuzz.py      | 9 +++++++++
 requirements.txt | 1 +
 2 files changed, 10 insertions(+)
 create mode 100644 fizzbuzz.py
 create mode 100644 requirements.txt

diff --git a/fizzbuzz.py b/fizzbuzz.py
new file mode 100644
index 0000000..8f45358
--- /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 0000000..55b033e
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+pytest
\ No newline at end of file
-- 
GitLab