PY/MATH
Challenges
Statistics · Easy

Count Above

Write `count_above(xs, threshold)` returning how many values are strictly greater than `threshold`.

solution.py○ Loading…
Loading...
Console
Test cases
count_above([1, 2, 3, 4, 5], 3)PENDING
HiddenPENDING
Hints