Files
30-seconds-of-code/snippets/count_occurences.md
2018-02-20 14:39:09 +05:30

506 B
Raw Blame History

count_occurences

Already implemented via list.count().

Counts the occurrences of a value in an list.

Uses the reduce functin from built-in module functools to increment a counter each time you encounter the specific value inside the list.

def count_occurences(arr, val):
    return reduce(
        (lambda x, y: x + 1 if y == val and type(y) == type(val) else x + 0),
        arr)
count_occurrences([1, 1, 2, 1, 2, 3], 1) # 3