Introduction to Algorithmic Warm Up

Let’s look at some common algorithmic problems.

Chapter goal

This chapter aims to demonstrate how a good understanding of an issue can make an algorithm for it a billion times faster! We will consider a number of programming challenges that share the following property: For each challenge, it is easy to come up with a naive algorithm consisting of a single loop. This solution, however, will be catastrophically slow. Together, we will design algorithms for these programming challenges that will be as simple as the naive solutions but much more efficient.

We will look at the following programming challenges in this chapter.


Fibonacci number

Compute the nn-th Fibonacci number.

Input: An integer nn.

Output: The nn-th Fibonacci number.

Press + to interact
Formula of Fibonacci number
Formula of Fibonacci number


Last digit of the Fibonacci number

Compute the last digit of the nn-th Fibonacci number.

Input: An integer nn.

Output: The last digit of the nn-th Fibonacci number.


Huge Fibonacci number

Compute the nn-th Fibonacci number modulo mm.

Input: Integers nn and mm.

Output: The nn-th Fibonacci number modulo mm.

Press + to interact
Huge Fibonaci number
Huge Fibonaci number

Last digit of the sum of Fibonacci numbers

Compute the last digit of F0+F1++FnF_{0} + F_{1} + \cdot\cdot\cdot + F_{n} ...