I'm completely stuck on a problem to write a function that does NOT use recursion, locals, or lambda. Only abstract list functions can be used. The function must input a list of positive integers, and output how many of those integers are strictly greater than 1. ie, the length of the list of all integers > 1
any ideas on how to do this? I've never implemented abstract list functions on their own and I'm not sure which ones would be used in this case.
Also, the language setting is Intermediate Student, no higher. Which is why lambda, and other functions cannot be used.