aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2023-11-10 07:03:12 +0000
committerGitHub <noreply@github.com>2023-11-10 07:03:12 +0000
commit5744606aeb3d7eb47255ccb00f645891762b765f (patch)
tree344c77493149af5937693ac9a030f58af9cafa0f
parent1d9bd4437a7f5e8a4170b90b027a1325a780e580 (diff)
parenta97cf21f8fb713335aee0c9ad3046932d1564057 (diff)
downloadperlweeklychallenge-club-5744606aeb3d7eb47255ccb00f645891762b765f.tar.gz
perlweeklychallenge-club-5744606aeb3d7eb47255ccb00f645891762b765f.tar.bz2
perlweeklychallenge-club-5744606aeb3d7eb47255ccb00f645891762b765f.zip
Merge pull request #9032 from packy/master
Challenge 242 - Packy Anderson
-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