From 1f5f7801ae4e050da5fd4284e5b365ece949c219 Mon Sep 17 00:00:00 2001 From: Dimitri Lozeve Date: Fri, 8 May 2020 10:38:40 +0200 Subject: [PATCH] Initial commit --- .gitignore | 1 + phase1.dyalog | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 .gitignore create mode 100644 phase1.dyalog diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3f411f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*\~ diff --git a/phase1.dyalog b/phase1.dyalog new file mode 100644 index 0000000..f4096f5 --- /dev/null +++ b/phase1.dyalog @@ -0,0 +1,8 @@ + ⍝ 1: Let's Split! + {(0>⍺)⌽(⊂⍺↑⍵),⊂⍺↓⍵} + ((0>⊣)⌽((⊂↑),(⊂↓))) + ⍝ 2: Character Building + {(~⍵∊127+⍳64)⊂⍵} + ⍝ 3: Excel-lent Columns + (26⊥64-⍨⎕UCS) + \ No newline at end of file