Common sorted list: Difference between revisions

Line 83:
9
</lang>
 
=={{header|Phix}}==
<lang Phix>?unique(join({{5,1,3,8,9,4,8,7}, {3,5,9,8,4}, {1,3,7,9}, split("not everything is an integer")},{}))</lang>
Note the join(x,{}): the 2nd param is needed to prevent it putting 32 (ie the acsii code for a space) in the output.
{{out}}
<pre>
{1,3,4,5,7,8,9,"an","everything","integer","is","not"}
</pre>
 
=={{header|Raku}}==
7,806

edits