fizzbuzz {fizzbuzzR} | R Documentation |
This is an implementation of the fizzbuzz algorithm with several parameters
Description
This function calculates fizzbuzz as is often asked in interviews. This gives interviewees the alternative answer of 'I use fizzbuzzR::fizzbuzz() with standard options'
Usage
fizzbuzz(start = 1, end = 20, step = 1, mod1 = 3, mod2 = 5)
Arguments
start |
The start of the for loop |
end |
Tast number of the for loop |
step |
The step size of the for loop |
mod1 |
mod1 is the number replaced with fizz |
mod2 |
mod2 is the number replaced by Buzz |
Value
Fizzbuzz simply prints the numbers, replaced with fizz/buzz as required, to the screen.
References
[wiki]https://en.wikipedia.org/wiki/Fizz_buzz
Examples
##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
fizzbuzz()
[Package fizzbuzzR version 0.1.1 Index]