Skip to content

Instantly share code, notes, and snippets.

@realmovestar
Created April 7, 2023 01:56
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 realmovestar/d0349091a4f4f1ba2c67c97bac72cae2 to your computer and use it in GitHub Desktop.
Save realmovestar/d0349091a4f4f1ba2c67c97bac72cae2 to your computer and use it in GitHub Desktop.
uniq using python
import sys
import json
counts = dict()
for line in sys.stdin:
if line in counts:
counts[line] += 1
else:
counts[line] = 1
print(json.dumps(counts, indent=2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment