PicoLisp Blog

PicoLisp Blog

Follow
Follow
homeGetting StartedWeb AppsDatabaseMobile AppsPilogPicoLisp Explored
Series

Algorithm Classics from the Rosetta Code

Sometimes an example says more than 1000 pages of documentation. This series will take specific algorithmns and discuss their implementation in PicoLisp step by step. https://rosettacode.org/

Articles in this series

The Forest Fire Model: Let it burn!

Nov 30, 20214 min read

The Task Implement the Drossel and Schwabl definition of the forest-fire model. It is basically a 2D cellular automaton where each cell can be in...

The Forest Fire Model: Let it burn!

Optimal Route Planning: A Brute Force Solution

Nov 13, 20216 min read

This task is actually not included in the Rosetta code, but still it is a quite frequent algorithmic task: How to find the optimal path between two...

Optimal Route Planning: A Brute Force Solution

Dinesman's Multiple Dwelling Problem

Nov 12, 20214 min read

The original task is from the book "Superior Mathematical Puzzles" from Howard P. Dinesman. The Task Baker, Cooper, Fletcher, Miller, and Smith live...

Dinesman's Multiple Dwelling Problem

Who owns the Zebra? - A Logic Puzzle

Nov 11, 20219 min read

"98% of the world population cannot solve this task." (Fake quote attributed to Albert Einstein) · The Task The Zebra puzzle, a.k.a. Einstein's Riddle,...

Who owns the Zebra? - A Logic Puzzle

The Towers Of Hanoi

Nov 10, 20215 min read

Implemented in Logical and Functional Programming · Today we will talk about a very famous recursive algorithm: The Towers of Hanoi riddle. We will show...

The Towers Of Hanoi

Web Apps: An Animation

Oct 17, 20217 min read

Task Create a window containing the string "Hello World! " (the trailing space is significant). Make the text appear to be rotating right by...

Web Apps: An Animation