From 9d156133b6b35273f3b2186e60c59be365f0ed61 Mon Sep 17 00:00:00 2001 From: Valentin BOUVAREL Date: Thu, 17 Nov 2022 10:23:06 +0100 Subject: [PATCH] Add Readme file --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a57c1fc --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ + +# GestForm Challenge + +![Python v3.10.8](https://img.shields.io/badge/python-v3.10.8-blue "Python v3.10.8") +![License LGPLv3](https://img.shields.io/badge/license-LGPLv3-blue "License LGPLv3") + + +GestForm is a FizzBuzz like challenge 😁 + +In this test we need to : +- From a random (not pseudo random ?) list of number between -1000 to 1000 +- For each we need to check: + - if divisible by 3 then display Gest + - if divisible by 5 then display Forme (note the ending char "e") + - if divisible by 3 and 5 then display GestForm + - else display the number + +All files must be provided to be checked.