|
5 anni fa | |
---|---|---|
.. | ||
README.md | 5 anni fa | |
Raindrops.fs | 5 anni fa | |
Raindrops.fsproj | 5 anni fa | |
RaindropsTests.fs | 5 anni fa |
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.
The rules of raindrops
are that if a given number:
To run the tests, run the command dotnet test
from within the exercise directory.
F# source code can be formatted with the Fantomas tool.
After installing it with dotnet tool restore
, run dotnet fantomas .
to format code within the current directory.
For more detailed information about the F# track, including how to get help if you’re having trouble, please visit the exercism.io F# language page.
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