1. Extracting Low-Value Transactions
Background
A financial analyst has a list of transaction amounts and needs to identify the initial streak of small purchases before a large transaction occurs.
Problem
Manually identifying the cutoff point in a long list of numbers is prone to error.
How to use
Input the transaction array, select 'Less than', and set the compare value to 100.
Array: [20, 45, 80, 150, 30], Predicate: Less than, Compare Value: 100Outcome
Returns [20, 45, 80], stopping at 150.