aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--challenge-279/pieviero/README1
-rw-r--r--challenge-279/pieviero/uiua/ch-1.ua5
-rw-r--r--challenge-279/pieviero/uiua/ch-2.ua5
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"