1
0

rename statics/euler and sync b93 code with main repo

This commit is contained in:
2017-11-20 17:38:54 +01:00
parent 0efeb3afeb
commit 69e3f51730
409 changed files with 745 additions and 509 deletions

View File

@@ -0,0 +1,11 @@
This problem boils down to implementing a sudoku solver.
So thats what I did (initially as a stand-alone project).
And then I wrote a program around that inputs the 5 puzzles
into the solver and calculates the result.
This means in this post I'm trying to describe how to build a sudoku solver in befunge.
Because all the logic is practically a stand-alone sudoku solver, I simply wrote one. You can read about the development and a few of my design decisions in [this blogpost here](https://www.mikescher.com/blog/9/A_complete_sudoku_solver_in_Befunge93).
The rest was looping 50 times through the solver code and adding the results together.
Really all the interesting stuff is written in the blogpost about the sudoku solver, go read it!