diff options
| author | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-11-10 22:25:20 +0100 |
|---|---|---|
| committer | Jörg Sommrey <28217714+jo-37@users.noreply.github.com> | 2023-11-10 22:25:20 +0100 |
| commit | f13f1e6f026217be9a4196f9b4b8b453c43d3390 (patch) | |
| tree | f9ccf9cb927db275ad72c28f6a4cb03a53d5d84d | |
| parent | f1a38ec03e28d6aaf74cb2624692d022c0327672 (diff) | |
| download | perlweeklychallenge-club-f13f1e6f026217be9a4196f9b4b8b453c43d3390.tar.gz perlweeklychallenge-club-f13f1e6f026217be9a4196f9b4b8b453c43d3390.tar.bz2 perlweeklychallenge-club-f13f1e6f026217be9a4196f9b4b8b453c43d3390.zip | |
modify blog
| -rw-r--r-- | challenge-242/jo-37/Blog.md | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/challenge-242/jo-37/Blog.md b/challenge-242/jo-37/Blog.md index 5aeea0229f..f3ae3e7b96 100644 --- a/challenge-242/jo-37/Blog.md +++ b/challenge-242/jo-37/Blog.md @@ -1,5 +1,5 @@ -#Missing Reversed Inversions -##Task 1: Missing Members +# Missing Reversed Inversions +## Task 1: Missing Members > You are given two arrays of integers. > Write a script to find out the missing members in each other arrays. @@ -31,7 +31,7 @@ setdiff_sorted($m1, $m2); ``` gives M1 \ M2. Same result, but better readable. -##Task 2: Flip Matrix +## Task 2: Flip Matrix > You are given `n x n` binary matrix. > Write a script to flip the given matrix as below. @@ -41,6 +41,4 @@ Reverting a value is done with the unary negation operator `!`. Performing the "flip matrix" operation on a 2-d ndarray `$m` thus is as easy as: ``` !$m->(-1:0) -``` - - +```
\ No newline at end of file |
