aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2020-11-10 01:48:00 +0100
committerAbigail <abigail@abigail.be>2020-11-10 01:48:00 +0100
commit657b83bcfe00921418e113b996801d40ad43b0fe (patch)
tree67828ee05de0cc80e024b8c476664ae98d62df23
parent21529fdf7f60a798fdf1e573c63fa20a3e9dcf17 (diff)
downloadperlweeklychallenge-club-657b83bcfe00921418e113b996801d40ad43b0fe.tar.gz
perlweeklychallenge-club-657b83bcfe00921418e113b996801d40ad43b0fe.tar.bz2
perlweeklychallenge-club-657b83bcfe00921418e113b996801d40ad43b0fe.zip
Test for a 4x4 Sudoku.
-rw-r--r--challenge-086/abigail/t/input-2-44
-rw-r--r--challenge-086/abigail/t/output-2-4.exp5
2 files changed, 9 insertions, 0 deletions
diff --git a/challenge-086/abigail/t/input-2-4 b/challenge-086/abigail/t/input-2-4
new file mode 100644
index 0000000000..b1f2d6d98c
--- /dev/null
+++ b/challenge-086/abigail/t/input-2-4
@@ -0,0 +1,4 @@
+[ 3 _ 4 _ ]
+[ _ 1 _ 2 ]
+[ _ 4 _ 3 ]
+[ 2 _ 1 _ ]
diff --git a/challenge-086/abigail/t/output-2-4.exp b/challenge-086/abigail/t/output-2-4.exp
new file mode 100644
index 0000000000..bbb700ad9c
--- /dev/null
+++ b/challenge-086/abigail/t/output-2-4.exp
@@ -0,0 +1,5 @@
+# 4x4 Sudoku
+[ 3 2 4 1 ]
+[ 4 1 3 2 ]
+[ 1 4 2 3 ]
+[ 2 3 1 4 ]