fizzbuzz: This is an implementation of the fizzbuzz algorithm with...

Description Usage Arguments Value References Examples

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

1
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

1
2
3
4
5
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

fizzbuzz()

fizzbuzzR documentation built on May 1, 2019, 7:29 p.m.