diff options
| author | Abigail <abigail@abigail.be> | 2020-11-10 19:27:17 +0100 |
|---|---|---|
| committer | Abigail <abigail@abigail.be> | 2020-11-10 19:27:17 +0100 |
| commit | cfbd2014a1220e88fa9cd757b77c4f68cb15c2bc (patch) | |
| tree | c0877721ef4c39bd27304bab150595bd2ae5a1b9 /challenge-086/abigail/perl | |
| parent | df58836107deaee46ebe5975305371742cd9e4e7 (diff) | |
| download | perlweeklychallenge-club-cfbd2014a1220e88fa9cd757b77c4f68cb15c2bc.tar.gz perlweeklychallenge-club-cfbd2014a1220e88fa9cd757b77c4f68cb15c2bc.tar.bz2 perlweeklychallenge-club-cfbd2014a1220e88fa9cd757b77c4f68cb15c2bc.zip | |
Don't warn on deep recursion.
16x16 sudokus will reach the warn limit.
Diffstat (limited to 'challenge-086/abigail/perl')
| -rw-r--r-- | challenge-086/abigail/perl/ch-2.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-086/abigail/perl/ch-2.pl b/challenge-086/abigail/perl/ch-2.pl index 7d36800cd7..3ca70cf4c8 100644 --- a/challenge-086/abigail/perl/ch-2.pl +++ b/challenge-086/abigail/perl/ch-2.pl @@ -90,7 +90,7 @@ foreach my $x (@INDICES) { } - +no warnings 'recursion'; sub solve ($solved, $unsolved) { # # If there are no unsolved squares, we return $solved. |
