RosettaCodeData/Task/Filter/00-TASK.txt

11 lines
280 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;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>