in reply to Re^3: How to get the index of smallest whole number in an array?
in thread How to get the index of smallest whole number in an array?
Update:Corrected ordering. Thanks to AnomalousMonk
The for is unnecessary. This is equivalent:say ( ... )[0].
The contents of the parens creates an order list smallest to largest; the [0] selects the first element of that list.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: How to get the index of smallest whole number in an array?
by corenth (Monk) on Jul 02, 2018 at 20:35 UTC |