FizzBuzz Extended
- FizzBuzz overkill
- Written in C#/.NET
- Solo
- Source on GitHub
Description and Responsibility
FizzBuzz Extended is an implementation of FizzBuzz in C#/.NET that included a configuration file to define the range and text replacements. The goal of this project was to introduce myself to .NET programming, practice text parsing, and start a project of adding features to the classic FizzBuzz problem that are unnecessary.
Design Process
The overall design and implementation of FizzBuzz Extended was straight forward. I initially implemented FizzBuzz as originally intended as a starting base to extend off of. From here, I worked on a simple parser for parsing a custom text file format that defines the range FizzBuzz would loop through and the numbers it would replace on. Once I accomplished this, the initial vision for the project was completed.