Skip to content

Instantly share code, notes, and snippets.

@jglozano
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jglozano/8218e482fed973bedf64 to your computer and use it in GitHub Desktop.
Save jglozano/8218e482fed973bedf64 to your computer and use it in GitHub Desktop.
FizzBuzz Tasks
From 1 to 100
Entry
----------
if num divisible by 3, Fizz
if num divisible by 5, Buzz
if num divisible by 3&5, FizzBuzz
Mid
----------
How do we make this reusable?
Refactor code to make reusable
Senior/Lead
------------
How do we handle large numbers? (Int.MaxValue?)
How do we handle low numbers?
How do we test the resuse?
What items should we also consider?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment