8 Queens Problem
The eight queens puzzle is the problem of placing eight chess queens on an 8×8 chessboard so
that no two queens threaten each other; thus, a solution requires that no two queens share the same row, column, or diagonal.
There are 92 distinct solutions. How many time does you Computer take to solve all positions?
Dijkstra Algorithm
Dijkstra's algorithm is an algorithm for finding the shortest paths between nodes in a graph, which may represent,
for example, road networks. It was conceived by computer scientist Edsger W. Dijkstra in 1956 and published three years later.
Fibonacci Number
In mathematics, the Fibonacci numbers, commonly denoted Fn, form a sequence, called the Fibonacci sequence,
such that each number is the sum of the two preceding ones, starting from 0 and 1.
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, ...
Do it maybe 100.000 times...