Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 841 Bytes

challenge.md

File metadata and controls

22 lines (13 loc) · 841 Bytes

Day 2: Extend the program.

On the second day, it's apparently game day! 🎯 A special horn startled you at breakfast and Teo sent you a note that they are starting the production of toys. 🎁📦

Santa and the elves have a tradition and love to play together at FizzBuzz during production throughout the day.

They find it a little bit too easy and would like to extend the rules of the game like this:

  • Multiples of 7 are Whizz
  • Multiples of 11 are Bang

They would like to be able to configure the game from the outside as well. 🎮

✅🚀 Challenge: Make the game configurable and add new cases. 🚀✅

  • 💡HINT: how can the rules be outside of the class?

snippet of the day

Proposed Solution

Proposed Solution Guide