aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-242/packy-anderson/README.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/challenge-242/packy-anderson/README.md b/challenge-242/packy-anderson/README.md
index 5ade739739..1789b5db95 100644
--- a/challenge-242/packy-anderson/README.md
+++ b/challenge-242/packy-anderson/README.md
@@ -64,7 +64,14 @@ Output: ([3])
Sample output
```
+$ perl/ch-2.pl
+Example 1:
+Input: @matrix = ([1, 1, 0], [1, 0, 1], [0, 0, 0])
+Output: ([1, 0, 0], [0, 1, 0], [1, 1, 1])
+Example 2:
+Input: @matrix = ([1, 1, 0, 0], [1, 0, 0, 1], [0, 1, 1, 1], [1, 0, 1, 0])
+Output: ([1, 1, 0, 0], [0, 1, 1, 0], [0, 0, 0, 1], [1, 0, 1, 0])
```
## Guest Language: Python