http://qs321.pair.com?node_id=556670


in reply to Sudoku Solver, and web interface.

I'm too lazy to look at that huge slab of perl code but i can give you a tip for the css: in stead of writing
.r1{ border: 1px dotted red; } .r2{ border: 1px dotted red; }
You can write:
.r1,.r2{ border: 1px dotted red; }
That will shave some bytes off the css ;-)