Filter a list of numbers and return how many are greater than zero.
Constraints
Example
>>> count_positives([1, -2, 3, 0, -5]) 2 >>> count_positives([0, 0, 0]) 0 >>> count_positives([]) 0
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints