Smallest numbers: Difference between revisions

Content added Content deleted
(Added Quackery.)
Line 804: Line 804:
=={{header|Quackery}}==
=={{header|Quackery}}==


<syntaxhighlight lang="Quackery"> [ stack ] is candidates ( --> s )
<syntaxhighlight lang="Quackery">
[ stack ] is candidates ( --> s )
[ stack ] is results ( --> s )
[ stack ] is results ( --> s )


Line 837: Line 838:
sortwith
sortwith
[ 1 peek swap 1 peek < ]
[ 1 peek swap 1 peek < ]
witheach
[] swap
[ 0 peek echo sp ] ] is task ( n --> )
witheach [ 0 peek join ] ] is task ( n --> [ )


51 task</syntaxhighlight>
51 task echo</syntaxhighlight>


{{out}}
{{out}}


<pre>9 1 3 5 2 4 4 3 7 9 10 11 5 19 22 26 8 17 16 19 9 8 13 7 17 4 17 3 11 18 13 5 23 17 18 7 17 15 9 18 16 17 9 7 12 28 6 23 9 24 23</pre>
<pre>[ 9 1 3 5 2 4 4 3 7 9 10 11 5 19 22 26 8 17 16 19 9 8 13 7 17 4 17 3 11 18 13 5 23 17 18 7 17 15 9 18 16 17 9 7 12 28 6 23 9 24 23 ]</pre>


=={{header|Raku}}==
=={{header|Raku}}==