diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2023-05-28 23:43:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-28 23:43:00 +0100 |
| commit | 698c4c2f393cf6366acc3a4e4ec8f2d3c0268824 (patch) | |
| tree | b22bf8c781e0d2742c7ec2b8bbedfab12c2c802f | |
| parent | 394979f6929fa0d2db0c7934b0d0027a69c58777 (diff) | |
| parent | e35265961de35f50606664f6f452e1e28e10a744 (diff) | |
| download | perlweeklychallenge-club-698c4c2f393cf6366acc3a4e4ec8f2d3c0268824.tar.gz perlweeklychallenge-club-698c4c2f393cf6366acc3a4e4ec8f2d3c0268824.tar.bz2 perlweeklychallenge-club-698c4c2f393cf6366acc3a4e4ec8f2d3c0268824.zip | |
Merge pull request #8138 from ap29600/ap29600-ch218
add solutions by Andrea Piseri
| -rw-r--r-- | challenge-218/ap29600/README | 1 | ||||
| -rwxr-xr-x | challenge-218/ap29600/bqn/ch-2.bqn | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/challenge-218/ap29600/README b/challenge-218/ap29600/README new file mode 100644 index 0000000000..003f354c89 --- /dev/null +++ b/challenge-218/ap29600/README @@ -0,0 +1 @@ +Solutions by Andrea Piseri diff --git a/challenge-218/ap29600/bqn/ch-2.bqn b/challenge-218/ap29600/bqn/ch-2.bqn new file mode 100755 index 0000000000..1f05c550d6 --- /dev/null +++ b/challenge-218/ap29600/bqn/ch-2.bqn @@ -0,0 +1,5 @@ +#!/usr/bin/env bqn + +Score ← {+´×⟜(⌽2⋆↕∘≠)⌈○(+˝)⟜¬⊏˘⊸=𝕩} + +Score [[0,0,1,1],[1,0,1,0],[1,1,0,0]] |
