Remove duplicate elements: Difference between revisions

no edit summary
No edit summary
Line 3,518:
Pack myboxwithfvedznlqurjgs.
</pre>
 
=={{header|Yabasic}}==
<lang Yabasic>data "Now", "is", "the", "time", "for", "all", "good", "men", "to", "come", "to", "the", "aid", "of", "the", "party.", ""
 
do
read p$
if p$ = "" break
if not instr(r$, p$) r$ = r$ + p$ + " "
loop
 
print r$</lang>
 
=={{header|zkl}}==
672

edits