diff options
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/README.org b/README.org index bf6e2c6..1af9310 100644 --- a/README.org +++ b/README.org @@ -13,6 +13,10 @@ This collection includes: - Algorithms: Various algorithms solved in several programming languages. +Writings: +- Fornax: Generating 4.8 million frames: + https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html + * Demo Solution for /DFS-33/, generated on /2021-11-03/ (click to play). @@ -24,9 +28,6 @@ Solution for /DFS-33/, generated on /2021-11-03/ (click to play). - DFS-51-incomplete (upto 4,000 frames; 120 fps): https://diode.zone/w/hWWaw8uKHCP5weUP5WWArD -- Fornax: Generating 4.8 million frames: - https://andinus.unfla.me/writings/2021/fornax-generating-4.8-million-frames.html - * Installation ~fornax~ is written in Raku, it can be installed with ~zef~. You can also @@ -138,9 +139,11 @@ A grid is printed for every iteration. Grids are composed of cells. |------------------+--------| | Path | ~.~ | | Blocked | ~#~ | +| Start | ~^~ | | Destination | ~$~ | |------------------+--------| | Visited | ~-~ | +| Current Path | ~~~ | | Current Position | ~@~ | - /Current Position/ is prioritized over /Blocked/ & /Destination/ symbol if |