commit 3b61491cbb55a2b43bdd9b0e156e982f2e711a7e
parent d83e227af4d4daf59d31ce2a01ac3cadfc2e8f82
Author: dwrz <dwrz@dwrz.net>
Date: Fri, 12 Nov 2021 21:16:26 +0000
Add python/raindrops
Diffstat:
6 files changed, 190 insertions(+), 0 deletions(-)
diff --git a/python/raindrops/HELP.md b/python/raindrops/HELP.md
@@ -0,0 +1,55 @@
+# Help
+
+## Running the tests
+
+To run the included *tests*, run the test file using the `pytest` module, replacing `{exercise_name}`:
+
+```bash
+$ python3 -m pytest {exercise_name}_test.py
+```
+
+Many IDE's and code editors have built-in support for using Pytest to run tests; check them out [here](https://github.com/exercism/python/blob/main/docs/TOOLS.md#editors-and-ides).
+
+For more information about running tests using `pytest`, checkout our [Python testing guide](https://github.com/exercism/python/blob/main/docs/TESTS.md#pytest).
+
+### Common pytest options
+
+- `-v` : enable verbose output.
+- `-x` : stop running tests on first failure.
+- `--ff` : run failures from previous test before running other test cases.
+
+For other options, see `python3 -m pytest -h`.
+
+## Submitting your solution
+
+You can submit your solution using the `exercism submit raindrops.py` command.
+This command will upload your solution to the Exercism website and print the solution page's URL.
+
+It's possible to submit an incomplete solution which allows you to:
+
+- See how others have completed the exercise
+- Request help from a mentor
+
+## Need to get help?
+
+If you'd like help solving the exercise, check the following pages:
+
+- The [Python track's documentation](https://exercism.org/docs/tracks/python)
+- [Exercism's support channel on gitter](https://gitter.im/exercism/support)
+- The [Frequently Asked Questions](https://exercism.org/docs/using/faqs)
+
+Should those resources not suffice, you could submit your (incomplete) solution to request mentoring.
+
+Below are some resources for getting help if you run into trouble:
+
+- [The PSF](https://www.python.org) hosts Python downloads, documentation, and community resources.
+- [Python Community on Discord](https://pythondiscord.com/) is a very helpful and active community.
+- [#python on Libera.chat](https://www.python.org/community/irc/) this is where the cored developers for the language hang out and get work done.
+- [Exercism on Gitter](https://gitter.im/exercism/home) join the Python room for Python-related questions or problems.
+- [/r/learnpython/](https://www.reddit.com/r/learnpython/) is a subreddit designed for Python learners.
+- [Python Community Forums](https://discuss.python.org/)
+- [Pythontutor](http://pythontutor.com/) for stepping through small code snippets visually.
+
+
+Additionally, [StackOverflow](http://stackoverflow.com/questions/tagged/python) is a good spot to search for your problem/question to see if it has been answered already.
+ If not - you can always [ask](https://stackoverflow.com/help/how-to-ask) or [answer](https://stackoverflow.com/help/how-to-answer) someone else's question.
+\ No newline at end of file
diff --git a/python/raindrops/README.md b/python/raindrops/README.md
@@ -0,0 +1,43 @@
+# Raindrops
+
+Welcome to Raindrops on Exercism's Python Track.
+If you need help running the tests or submitting your code, check out `HELP.md`.
+
+## Instructions
+
+Your task is to convert a number into a string that contains raindrop sounds corresponding to certain potential factors. A factor is a number that evenly divides into another number, leaving no remainder. The simplest way to test if a one number is a factor of another is to use the [modulo operation](https://en.wikipedia.org/wiki/Modulo_operation).
+
+The rules of `raindrops` are that if a given number:
+
+- has 3 as a factor, add 'Pling' to the result.
+- has 5 as a factor, add 'Plang' to the result.
+- has 7 as a factor, add 'Plong' to the result.
+- _does not_ have any of 3, 5, or 7 as a factor, the result should be the digits of the number.
+
+## Examples
+
+- 28 has 7 as a factor, but not 3 or 5, so the result would be "Plong".
+- 30 has both 3 and 5 as factors, but not 7, so the result would be "PlingPlang".
+- 34 is not factored by 3, 5, or 7, so the result would be "34".
+
+## Source
+
+### Contributed to by
+
+- @behrtam
+- @BethanyG
+- @bsoyka
+- @cmccandless
+- @Dog
+- @ikhadykin
+- @kytrinyx
+- @lowks
+- @N-Parsons
+- @pheanex
+- @sjakobi
+- @tqa236
+- @yawpitch
+
+### Based on
+
+A variation on FizzBuzz, a famous technical interview question that is intended to weed out potential candidates. That question is itself derived from Fizz Buzz, a popular children's game for teaching division. - https://en.wikipedia.org/wiki/Fizz_buzz
+\ No newline at end of file
diff --git a/python/raindrops/__pycache__/raindrops.cpython-39.pyc b/python/raindrops/__pycache__/raindrops.cpython-39.pyc
Binary files differ.
diff --git a/python/raindrops/__pycache__/raindrops_test.cpython-39-pytest-6.2.5.pyc b/python/raindrops/__pycache__/raindrops_test.cpython-39-pytest-6.2.5.pyc
Binary files differ.
diff --git a/python/raindrops/raindrops.py b/python/raindrops/raindrops.py
@@ -0,0 +1,21 @@
+"""This module provides a function to convert a number into a string that
+ contains raindrop sounds corresponding to certain potential factors."""
+
+def convert(number):
+ """Converts a number into a string that contains raindrop sounds
+ corresponding to certain potential factors."""
+ sound = ""
+ digit=True
+
+ if number % 3 == 0:
+ sound += "Pling"
+ digit=False
+ if number % 5 == 0:
+ sound += "Plang"
+ digit=False
+ if number % 7 == 0:
+ sound += "Plong"
+ digit=False
+ if digit: sound = f"{ number }"
+
+ return sound
diff --git a/python/raindrops/raindrops_test.py b/python/raindrops/raindrops_test.py
@@ -0,0 +1,69 @@
+import unittest
+
+from raindrops import (
+ convert,
+)
+
+# Tests adapted from `problem-specifications//canonical-data.json`
+
+
+class RaindropsTest(unittest.TestCase):
+ def test_the_sound_for_1_is_1(self):
+ self.assertEqual(convert(1), "1")
+
+ def test_the_sound_for_3_is_pling(self):
+ self.assertEqual(convert(3), "Pling")
+
+ def test_the_sound_for_5_is_plang(self):
+ self.assertEqual(convert(5), "Plang")
+
+ def test_the_sound_for_7_is_plong(self):
+ self.assertEqual(convert(7), "Plong")
+
+ def test_the_sound_for_6_is_pling_as_it_has_a_factor_3(self):
+ self.assertEqual(convert(6), "Pling")
+
+ def test_2_to_the_power_3_does_not_make_a_raindrop_sound_as_3_is_the_exponent_not_the_base(
+ self,
+ ):
+ self.assertEqual(convert(8), "8")
+
+ def test_the_sound_for_9_is_pling_as_it_has_a_factor_3(self):
+ self.assertEqual(convert(9), "Pling")
+
+ def test_the_sound_for_10_is_plang_as_it_has_a_factor_5(self):
+ self.assertEqual(convert(10), "Plang")
+
+ def test_the_sound_for_14_is_plong_as_it_has_a_factor_of_7(self):
+ self.assertEqual(convert(14), "Plong")
+
+ def test_the_sound_for_15_is_pling_plang_as_it_has_factors_3_and_5(self):
+ self.assertEqual(convert(15), "PlingPlang")
+
+ def test_the_sound_for_21_is_pling_plong_as_it_has_factors_3_and_7(self):
+ self.assertEqual(convert(21), "PlingPlong")
+
+ def test_the_sound_for_25_is_plang_as_it_has_a_factor_5(self):
+ self.assertEqual(convert(25), "Plang")
+
+ def test_the_sound_for_27_is_pling_as_it_has_a_factor_3(self):
+ self.assertEqual(convert(27), "Pling")
+
+ def test_the_sound_for_35_is_plang_plong_as_it_has_factors_5_and_7(self):
+ self.assertEqual(convert(35), "PlangPlong")
+
+ def test_the_sound_for_49_is_plong_as_it_has_a_factor_7(self):
+ self.assertEqual(convert(49), "Plong")
+
+ def test_the_sound_for_52_is_52(self):
+ self.assertEqual(convert(52), "52")
+
+ def test_the_sound_for_105_is_pling_plang_plong_as_it_has_factors_3_5_and_7(self):
+ self.assertEqual(convert(105), "PlingPlangPlong")
+
+ def test_the_sound_for_3125_is_plang_as_it_has_a_factor_5(self):
+ self.assertEqual(convert(3125), "Plang")
+
+
+if __name__ == "__main__":
+ unittest.main()