From e35265961de35f50606664f6f452e1e28e10a744 Mon Sep 17 00:00:00 2001 From: Andrea Piseri Date: Sat, 27 May 2023 19:51:10 +0200 Subject: add solutions by Andrea Piseri --- challenge-218/ap29600/README | 1 + challenge-218/ap29600/bqn/ch-2.bqn | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 challenge-218/ap29600/README create mode 100755 challenge-218/ap29600/bqn/ch-2.bqn 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]] -- cgit