Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
2
Task/Rot-13/APL/rot-13-1.apl
Normal file
2
Task/Rot-13/APL/rot-13-1.apl
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
r1 ← ⎕UCS ∘ {+/⍵,13×(⍵≥65)∧(⍵<78),(-(⍵≥78)∧(⍵≤90)),(⍵≥97)∧(⍵<110),(-(⍵≥110)∧(⍵≤122))} ∘ ⎕UCS
|
||||
rot13 ← { r1 ¨ ⍵ }
|
||||
2
Task/Rot-13/APL/rot-13-2.apl
Normal file
2
Task/Rot-13/APL/rot-13-2.apl
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
r1 ← { ⎕UCS {+/⍵,13×(⍵≥65)∧(⍵<78),(-(⍵≥78)∧(⍵≤90)),(⍵≥97)∧(⍵<110),(-(⍵≥110)∧(⍵≤122))} ⎕UCS ⍵ }
|
||||
rot13 ← { r1 ¨ ⍵ }
|
||||
4
Task/Rot-13/APL/rot-13-3.apl
Normal file
4
Task/Rot-13/APL/rot-13-3.apl
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
⍝ 2023-03-03
|
||||
|
||||
k←'AaBbCcDdEeFfGgHhIiJjKkLlMmzZyYxXwWvVuUtTsSrRqQpPoOnN'
|
||||
rot←{⍵∊k:[53-k⍳⍵]⋄⍵}¨
|
||||
Loading…
Add table
Add a link
Reference in a new issue