Minimum numbers of three lists: Difference between revisions

Add Factor
(Realize in F#)
(Add Factor)
Line 51:
[5; 22; 12; 21; 38]
</pre>
 
=={{header|Factor}}==
{{works with|Factor|0.99 2021-06-02}}
<lang factor>USING: arrays sequences prettyprint ;
 
{ 5 45 23 21 67 } { 43 22 78 46 38 } { 9 98 12 98 53 }
3array flip [ infimum ] map .</lang>
{{out}}
<pre>
{ 5 22 12 21 38 }
</pre>
 
=={{header|Go}}==
{{libheader|Go-rcu}}
1,808

edits