|
compact_list
Added in advas.0.0.6
Compacts a dictionary. As an example,
list[first] = 1
list[second] = 2
list[First] = 1
will be reduced to
list[first] = 2
list[second] = 2
Items are equal if there are no differences between the words except for the letters being in upper/lower case.
In: |
list |
a dictionary (list[item] = value) |
Out: |
|
a list of words (dictionary) with pairs list[term]=frequency |
|
|