Question: 
Write a function to get the frequency of the elements in a list.


Model's Code:
def freq_count(lst):
    from collections import Counter
    return dict(Counter(lst))



Sample Correct Code:
import collections
def freq_count(list1):
  freq_count= collections.Counter(list1)
  return freq_count


Asserts:
assert freq_count([10,10,10,10,20,20,20,20,40,40,50,50,30])==({10: 4, 20: 4, 40: 2, 50: 2, 30: 1}) 
assert freq_count([1,2,3,4,3,2,4,1,3,1,4])==({1:3, 2:2,3:3,4:3}) 
assert freq_count([5,6,7,4,9,10,4,5,6,7,9,5])==({10:1,5:3,6:2,7:2,4:2,9:2}) 


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 88 of 974: 66/88 (75.0%): success