Skip to content

Instantly share code, notes, and snippets.

@solomon081
Created May 29, 2012 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solomon081/2829993 to your computer and use it in GitHub Desktop.
Save solomon081/2829993 to your computer and use it in GitHub Desktop.
CountArray
def count(arr):
d = {}
for x in arr:
if x in d.keys():
d[x] += 1
else:
d[x] = 1
return d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment