Minimum numbers of three lists: Difference between revisions

Content added Content deleted
(Added various dialects BASIC (Applesoft BASIC, BASIC256, Chipmunk Basic, GW-BASIC, Minimal BASIC, MSX Basic, PureBasic, QBasic, Quite BASIC, RunBASIC, XBasic and Yabasic))
(→‎J: add)
Line 734: Line 734:
{{Out}}
{{Out}}
<pre>[5,22,12,21,38]</pre>
<pre>[5,22,12,21,38]</pre>

=={{header|J}}==
<syntaxhighlight lang="j"> ] numbers =. 3 5 $ 5 45 23 21 67 43 22 78 46 38 9 98 12 54 53
5 45 23 21 67
43 22 78 46 38
9 98 12 54 53

<./ numbers
5 22 12 21 38</syntaxhighlight>


=={{header|JavaScript}}==
=={{header|JavaScript}}==