diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2024-07-22 19:25:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-22 19:25:18 +0100 |
| commit | ffdd26abdd45dd060af0b6a7d697ae68f2a67389 (patch) | |
| tree | 6585d362ce97d2036875f4bc973c587a3e3ad2a2 | |
| parent | e875bda7143db20a8f19fbb63fe7b807961c54b8 (diff) | |
| parent | cac822b22bf35db7d83f1fd0e2a2b8f240aa9993 (diff) | |
| download | perlweeklychallenge-club-ffdd26abdd45dd060af0b6a7d697ae68f2a67389.tar.gz perlweeklychallenge-club-ffdd26abdd45dd060af0b6a7d697ae68f2a67389.tar.bz2 perlweeklychallenge-club-ffdd26abdd45dd060af0b6a7d697ae68f2a67389.zip | |
Merge pull request #10480 from PieVieRo/uiua
Solutions for week 279 in Uiua
| -rw-r--r-- | challenge-279/pieviero/README | 1 | ||||
| -rw-r--r-- | challenge-279/pieviero/uiua/ch-1.ua | 5 | ||||
| -rw-r--r-- | challenge-279/pieviero/uiua/ch-2.ua | 5 |
3 files changed, 11 insertions, 0 deletions
diff --git a/challenge-279/pieviero/README b/challenge-279/pieviero/README new file mode 100644 index 0000000000..739bc37466 --- /dev/null +++ b/challenge-279/pieviero/README @@ -0,0 +1 @@ +Solution by Tymoteusz Moryto (PieVieRo on GitHub) diff --git a/challenge-279/pieviero/uiua/ch-1.ua b/challenge-279/pieviero/uiua/ch-1.ua new file mode 100644 index 0000000000..088118732b --- /dev/null +++ b/challenge-279/pieviero/uiua/ch-1.ua @@ -0,0 +1,5 @@ +# In Uiua strings are equivalent to character arrays +SortLetters ← ⊏⍏ +SortLetters [3 2 1 4] "REPL" +SortLetters [2 4 1 3] "AURK" +SortLetters [5 4 2 6 1 3] "OHYNPT" diff --git a/challenge-279/pieviero/uiua/ch-2.ua b/challenge-279/pieviero/uiua/ch-2.ua new file mode 100644 index 0000000000..6aad2de4bb --- /dev/null +++ b/challenge-279/pieviero/uiua/ch-2.ua @@ -0,0 +1,5 @@ +Vowels ← "aeiou" +SplitString ← =0◿2/+♭⊞= Vowels +SplitString "perl" +SplitString "book" +SplitString "good morning" |
