From aa9377a2dbd61a383a1fa7e4dfd2109abd721ef1 Mon Sep 17 00:00:00 2001 From: PerlMonk Athanasius Date: Sun, 15 Nov 2020 19:14:16 +1000 Subject: Perl & Raku solutions to Tasks 1 & 2 of the Perl Weekly Challenge #086 On branch branch-for-challenge-086 Changes to be committed: new file: Sudoku-Data/Empty.dat new file: Sudoku-Data/Example-completed.dat new file: Sudoku-Data/Example.dat new file: Sudoku-Data/Hard.dat new file: Sudoku-Data/Invalid-box.dat new file: Sudoku-Data/Invalid-col.dat new file: Sudoku-Data/Invalid-row.dat new file: Sudoku-Data/Unsolvable.dat new file: Sudoku-Data/Wikipedia.dat new file: perl/Sudoku.pm new file: perl/ch-1.pl new file: perl/ch-2.pl new file: raku/Sudoku.rakumod new file: raku/ch-1.raku new file: raku/ch-2.raku --- challenge-086/athanasius/Sudoku-Data/Example.dat | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 challenge-086/athanasius/Sudoku-Data/Example.dat (limited to 'challenge-086/athanasius/Sudoku-Data/Example.dat') diff --git a/challenge-086/athanasius/Sudoku-Data/Example.dat b/challenge-086/athanasius/Sudoku-Data/Example.dat new file mode 100644 index 0000000000..eba378a89f --- /dev/null +++ b/challenge-086/athanasius/Sudoku-Data/Example.dat @@ -0,0 +1,9 @@ +_ _ _ 2 6 _ 7 _ 1 +6 8 _ _ 7 _ _ 9 _ +1 9 _ _ _ 4 5 _ _ +8 2 _ 1 _ _ _ 4 _ +_ _ 4 6 _ 2 9 _ _ +_ 5 _ _ _ 3 _ 2 8 +_ _ 9 3 _ _ _ 7 4 +_ 4 _ _ 5 _ _ 3 6 +7 _ 3 _ 1 8 _ _ _ -- cgit