Tag: algorithms
Posts about data structures and algorithms.
-
Using A* and Python to Solve a Puzzle
In this article we'll be trying to solve the puzzle game flood using Python. The game is played on a grid of cells that can be of any fixed number of colors.
-
Using a Genetic Algorithm to Guess Arithmetic Equations in Julia
Genetic algorithms try to replicate the mechanisms of biological evolution to solve problems. In this article we'll use a somewhat useless example problem to demonstrate how to design and implement a genetic algorithm in Julia which I have been trying to learn recently.