Defining the Problem

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

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