Final Points Before Starting…
Hopefully you’re now fully set up and ready to start solving puzzles! There are just a few final points to note before you get going…
- It doesn’t matter if the solutions to your puzzles break for bad inputs. We’re not writing production code here, if a puzzle states that the input will be a list of integers then assume that you will receive a list of integers. Do however think about edge cases e.g. what if the input list is empty? What if the input number is negative?
- All of the challenge puzzles have starter code that’s designed to get you going quickly. Most of them have just one function defined, however that doesn’t mean you can’t define more functions yourself. It’s only a guide, you can even choose to not ...