Files
30-seconds-of-code/frequencies.md
Isabelle Viktoria Maciohsek b047b8f546 Add frequencies
2020-03-14 11:33:48 +02:00

23 lines
554 B
Markdown

---
title: frequencies
tags: list,intermediate
---
Returns a dictionary with the unique values of a list as keys and their frequencies as the values.
Use a `for` loop to populate a dictionary, `f`, with the unique values in `lst` as keys, adding to existing keys every time the same value is encountered.
```py
from functools import reduce
def frequencies(lst):
f = {}
for x in lst:
f[x] = f[x] + 1 if x in f else 1
return f
```
```py
frequencies(['a', 'b', 'a', 'c', 'a', 'a', 'b']) # { 'a': 4, 'b': 2, 'c': 1 }
```