Learn practical skills, build real-world projects, and advance your career

Shortest Path Algorithm (Part 1)

This is the first part of a study on how shortest path algorithms work.
This study is divided into three parts.

    1. Draw an empty board
    1. Add obstacles randomly
    1. Implement the shortest path algorithm

The division intends to make it easier to understand and visualize the algorithm.

1 - Dependencies

Before we start writing code, we need to install the python library Pillow.

pip install Pillow