From: Ben Harris Date: Fri, 3 May 2024 13:10:41 +0000 (+0100) Subject: Slight simplification of 03b X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~bjharris/git?a=commitdiff_plain;h=223e3d529666c941695afa0d2ac8966efd2cd2b5;p=aoc-2022.git Slight simplification of 03b I think I've understood ˘ now. It's like ¨ but for rows rather than elements. --- diff --git a/03/03b.bqn b/03/03b.bqn index 9a52f2a..a9101f8 100644 --- a/03/03b.bqn +++ b/03/03b.bqn @@ -5,6 +5,6 @@ PriorityLC←{( 1+𝕩-'a')×(𝕩≥'a')∧(𝕩≤'z')} PriorityUC←{(27+𝕩-'A')×(𝕩≥'A')∧(𝕩≤'Z')} Priority←PriorityLC+PriorityUC -Main←{+´(Priority (⊑Intersect´)¨<˘Group𝕩)} +Main←{+´Priority(⊑Intersect´)˘Group𝕩} •Show Main •file.Lines ⊑•args