Skip to content

Instantly share code, notes, and snippets.

@ltoshea
Created December 4, 2018 17:27
Show Gist options
  • Select an option

  • Save ltoshea/414a37a0418a70cf12b4c40c5a47ba49 to your computer and use it in GitHub Desktop.

Select an option

Save ltoshea/414a37a0418a70cf12b4c40c5a47ba49 to your computer and use it in GitHub Desktop.
Counts the number of the same numbers e.g. ar = [10,20,30,40,30] Counter(ar) // {10:1, 20:1, 30:2, 40:1}
from collection import Counter
ar = [10,20,30,40,40]
Counter(ar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment