diff options
Diffstat (limited to 'progs/a99.py')
-rw-r--r-- | progs/a99.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a99.py b/progs/a99.py new file mode 100644 index 0000000..9a4585f --- /dev/null +++ b/progs/a99.py @@ -0,0 +1,6 @@ +def count_range_in_list(li, min, max):
+ ctr = 0
+ for x in li:
+ if min <= x <= max:
+ ctr += 1
+ return ctr
\ No newline at end of file |