A Sudoku Solver in a few Lines of Code – Or the Power of Recursive Programming

In this post I want to demonstrate the power of recursive programming by programming a sudoku solver in Python. The complete sourcecode can also be downloaded here. Although I like solving Sudokus by hand, I’m far away from being a professional Sudoku solver. Usually I get the medium-ones solved, however, since I always want to… Read more A Sudoku Solver in a few Lines of Code – Or the Power of Recursive Programming

Solving the Rubik’s Cube using corners first method

Some time ago I organized a cubing-event in the quarter and presented the ‘algorithms’ – how move-sequences are called in the cuber-scene – to solve the rubik’s cube using the corners first method based on information provided by Victor Ortega. Here I present the material I developed in order to teach the people this method.… Read more Solving the Rubik’s Cube using corners first method