Find the missing permutation: Difference between revisions

Added Uiua solution
(Added Easylang)
(Added Uiua solution)
Line 3,526:
</pre>
 
=={{header|Uiua}}==
Counts occurrences of each char by column and spots the outliers.
<syntaxhighlight lang="uiua">
Perms ← ⊜∘⊸≠@ "ABCD CABD ACDB DACB BCDA ACBD ADCB CDAB DABC BCAD CADB CDBA CBAD ABDC ADBC BDCA DCBA BACD BADC BDAC CBDA DBCA DCAB"
/⊂≡(▽-⟜/↥:⊕⊃⊢⧻⊛.)⍉ Perms
</syntaxhighlight>
{{out}}
<pre>
"DBAC"
</pre>
=={{header|VBScript}}==
Uses the 3rd method approach by adding the columns.
159

edits