Sudoku puzzle solver using awk

Fun & Games Technology
Sudoku puzzle solver using awk

Solving Sudoku with awk

awk is a fun and powerful language available in the command-line of Linux, Mac OS X, and even Windows (with a little help from Cygwin). In fact, our own Dale Dougherty co-authored one of the classic books on awk (and sed, another great Unix power tool) back in 1990 (the second edition was released in 1997), sed & awk.

At The Geek Stuff, Bill Duncan has posted a fun awk program that can solve Sudoku puzzles:

The application I chose to use as an example is “yet another sudoku puzzle solver”. I must confess at the outset that I have never sat down to solve one of these puzzles myself, but sketched this out over a few days while commuting on a train and watching other people work on them. It was far more fun I think than actually doing any of the puzzles..

[…]

This program uses a very simple depth-first recursive backtracking algorithm with up-front and ongoing elimination of invalid entries. Awk may not have the expressive power for representing complex data that perl or other languages have, but with care, many moderate sized problems and data sets can be used. This algorithm may not be the best one around, but it is certainly fast enough for most problems and is easy to implement.

When you strip out blank lines and comments it’s only 67 lines! Keeping in the awk spirit, that would be:

awk '!/^[ t]*#/ && !/^$/' solve.awk | wc -l

Yet Another Sudoku Puzzle Solver Using AWK

If you need to generate some puzzles to throw at it, try this Sudoku Generator written in Python.

14 thoughts on “Sudoku puzzle solver using awk

  1. charlie says:

    you don’t need to clutter up windows by adding cygwin, there are a few native ones, gnuish, unxutils, even a native port of the one true awk, as well as lookalikes like gawk.

    Features vary.

  2. Brian Jepson says:

    Thanks, Charlie; I usually install cygwin on many of my machines, but true, it’s not the simplest way to get your hands on awk.

  3. darkonn says:

    Oh, i like sudoku! I posted a small review of the sudoku on my blog a week or 2 ago so. You can read it by visiting: http://ambienbuy.net

  4. Ramesh Dahal says:

    You may use harder puzzle visit: http://www.ambienbuy.org/

  5. larrywall says:

    hehe yandex

  6. larrywall says:

    hehe yandex

Comments are closed.

Discuss this article with the rest of the community on our Discord server!
Tagged

I'm a tinkerer and finally reached the point where I fix more things than I break. When I'm not tinkering, I'm probably editing a book for Maker Media.

View more articles by Brian Jepson

ADVERTISEMENT

Maker Faire Bay Area 2023 - Mare Island, CA

Escape to an island of imagination + innovation as Maker Faire Bay Area returns for its 15th iteration!

Buy Tickets today! SAVE 15% and lock-in your preferred date(s).

FEEDBACK