Defining the Problem

The first part of this lesson will introduce you to a math puzzle, and you’ll start designing a solution for it before you implement it in the next demo.

The puzzle is straightforward:

What is the sum between two numbers? For example, what’s the sum of numbers between one and 10?

The likely first solution that comes to your mind is to add 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10.

You’ll use what you’ve learned in the previous lessons to implement this initial solution in the next demo.

See forum comments
Download course materials from Github
Previous: Introduction Next: First Solution Demo