1. Trim Leading Low Test Scores
Data AnalystBackground
You have an array of test scores sorted in ascending order, with some below the passing threshold.
Problem
Need to remove scores below 60 from the beginning to focus on passing results.
How to use
Input the scores array, select 'less-than' as the predicate type, and set the compare value to 60.
{"array": "[45, 55, 65, 75, 85]", "predicateType": "less-than", "compareValue": "60"}Outcome
Output: [65, 75, 85] (drops 45 and 55 because they are less than 60).