So why I am doing this?
I want to showcase my skills in calculation of algorithms, as well as my skills in Java. It's my strongest language. I absolutely welcome feedback from other users.
added on 3/3/2017
This seemed to me to be a straightforward problem. Based off of LeetCode's version, the request that was given is to output a List of Strings that represent the numbers from 1 to n, given an int n (inclusive). For every multiple of three, the number is replaced with the word "Fizz". For every multiple of five, the number is replaced with the word "Buzz". And for a number that is multiple of both, the number is replaced with FizzBuzz.