How to resolve the algorithm Filter step by step in the TUSCRIPT programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Filter step by step in the TUSCRIPT programming language
Table of Contents
Problem Statement
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.
Let's start with the solution:
Step by Step solution about How to resolve the algorithm Filter step by step in the TUSCRIPT programming language
Source code in the tuscript programming language
$$ MODE TUSCRIPT
arr="1'4'9'16'25'36'49'64'81'100",even=""
LOOP nr=arr
rest=MOD (nr,2)
IF (rest==0) even=APPEND (even,nr)
ENDLOOP
PRINT even
You may also check:How to resolve the algorithm Conway's Game of Life step by step in the Batch File programming language
You may also check:How to resolve the algorithm Integer overflow step by step in the C# programming language
You may also check:How to resolve the algorithm Character codes step by step in the 68000 Assembly programming language
You may also check:How to resolve the algorithm Loops/Nested step by step in the XBasic programming language
You may also check:How to resolve the algorithm Forest fire step by step in the Lua programming language