RosettaCodeData/Task/Filter/00-TASK.txt
2023-07-01 13:44:08 -04:00

10 lines
280 B
Text

;Task:
Select certain elements from an Array into a new Array in a generic way.
To demonstrate, select all even numbers from an Array.
As an option, give a second solution which filters destructively,
by modifying the original Array rather than creating a new Array.
<br><br>