Created
January 30, 2013 17:07
-
-
Save iskandr/4674729 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @parakeet.jit | |
| def count_thresh(values, thresh): | |
| n = 0 | |
| for elt in values: | |
| n += elt < thresh | |
| return n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment