Solving custom Fizzbuzz with Javascript

Solving custom Fizzbuzz with Javascript

Image for post

FizzBuzz is a coding test with a relatively simple premise.

  1. Print out numbers 1 to 100
  2. Replace all numbers divisible by 3 with ?fizz?
  3. Replace all numbers divisible by 5 with ?buzz?
  4. replace all numbers divisible by both 3 and 5 with ?fizzbuzz?

In this blog post, I?ll explain how to solve the task, as well as how to iterate an extra level of sophistication, by creating a function that takes custom parameters for both the strings and the integers. This came up recently as a code wars challenge and after knocking my head against a brick wall for a while, I came to the solution below.

Like all coding problems, the best way to approach this task is to break it down into smaller pieces.

Step 1: Creating our array of numbers.

Our first step is to create an empty function, which will ultimately run all of our code.

Image for post

Next up, we declare an empty array within the function

Image for post

So far, so simple!

Our next step introduces our first piece of logic. We want to create a counter that runs from 1 to 100, and places ?something? into the array for each of those numbers. As in the outline, we want this to be either the integer, ?fizzbuzz?, ?fizz? or ?buzz? depending on what number it is. We do this with a for loop.

Image for post

This loop sets a variable of ?i?, which we will use as our counter. We set i to 1, as we want to run from 1 to 100, rather than 0 to 100. We then set our end clause, by saying that as long as the length of our array, ?arr? is less than 100, run the code in the loop. Finally, we increment our i variable by 1 each time we run the code.

If we wanted to just return number 1 to 100, we could do so at this stage by calling the ?push? array method on the ?arr? array, like this.

Image for post

This is the end of our first step!

Step two: Replacing our numbers with ?fizz? and ?buzz?

In order to replace our numbers with ?Fizz? and ?Buzz?, we need to take an extra step and set up an if/else statement.

Image for post

We use the modulo operator here to work out which path to take. Modulo returns the remainder of an integer, so in plain english what we?re saying here is

If the number (i) divided by 3 has no remainder, push the string ?fizz? to the corresponding index position in the array.

Otherwise, if the number (i) divided by 5 has no remainder, push the string ?buzz? to the corresponding index position in the array.

Finally, if neither of these conditions are true, just push the number (i) to the array.

We?re most of the way there, but we wanted to print ?FizzBuzz? if the number is divisible by both 3 AND 5. Luckily, this extra step is very straight forward.

Image for post

All we do is add an extra condition at the beginning of the loop. This says

?If the number (i) is divisible by 3 AND the number (i) is divisible by 5, push the string ?FizzBuzz? to the array?

If this condition isn?t true, then we work through the rest of the if/else statement as usual.

Our final code looks like this

Image for post

Note that we return our array as the last thing we do, so that we actually return the contents.

and if we run it, this is the result we get

Image for post

Step 3: adding in custom parameters

We?ve got the basic code working, but we want to set up our function to take and return custom parameters.

The first thing we?re going to do is extend our function with four arguments. We?re going to allow these to be set at the point the function is called, but also set default values.

Image for post

This is a way to set option arguments in a function. We have our defaults applied, but they can be overridden when the function is called.

For the final step, all we want to do is make sure that the return values are set when the function is called. In order to do this, we just want to make sure that instead of pushing a set string to the array, as we did in the earlier example, we?re pushing whatever is contained in our function arguments.

Image for post

We replace the hardcoded 3 and 5 in the if/else with n1/n2, to take a custom input (or the default value if one isn?t provided) and we replace the hardcoded ?fizzbuzz? strings with the str1/str2 arguments.

This is how our final code should look

Image for post

We can now run the code with our custom arguments, like this:

Image for postImage for post

And this is the result we get, with ?hello? logging for all numbers divisible by 2 and ?helloworld? for all numbers divisible by 2 and 10.

We can also call single numbers from our array like this

Image for post

which will just return whatever is at index 19, resulting in

Image for post

Hopefully this was useful to anyone working out how to solve a similar FizzBuzz challenge. If you have any questions (or a better solution!) let me know in the comments!

I?m an ex-Stack Overflow Data Analyst, transitioning into development and actively looking for a junior javascript developer position in London (UK) so if you?re hiring and like the look of my solution, please feel free to drop me an email

17

No Responses

Write a response