Skip Menu |

This queue is for tickets about the Games-Sudoku-Solver CPAN distribution.

Report information
The Basics
Id: 27497
Status: resolved
Priority: 0/
Queue: Games-Sudoku-Solver

People
Owner: Nobody in particular
Requestors: mhasch-cpanbugs [...] cozap.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: v1.0.0
Fixed in: (no value)



Subject: sudoku_check reports wrong submatrix
--- Solver.pm.dist 2007-06-08 11:37:02.000000000 +0200 +++ Solver.pm 2007-06-08 11:38:11.000000000 +0200 @@ -257,7 +257,7 @@ $count{$key}++; if ( $key > 0 && $count{$key} > 1 ) { my $submat = $ii + $jj / 3 + 1; - croak "value repeated in submatrix ${i} \n"; + croak "value repeated in submatrix $submat \n"; } } }