Minimum numbers of three lists: Difference between revisions

added Arturo
(Added Quackery.)
(added Arturo)
Line 122:
5 22 12 21 38
</pre>
 
=={{header|Arturo}}==
 
<syntaxhighlight lang="arturo">lists: [
[ 5 45 23 21 67]
[43 22 78 46 38]
[ 9 98 12 98 53]
]
 
print map 0..dec size first lists 'i ->
min map lists 'l -> l\[i]</syntaxhighlight>
 
{{out}}
 
<pre>5 22 12 21 38</pre>
 
=={{header|AutoHotkey}}==
1,532

edits