1a1a11a's picture
Add files using upload-large-folder tool
8dc315b verified
raw
history blame contribute delete
231 Bytes
import sys
from collections import defaultdict
d = defaultdict(int)
with open(sys.argv[1], "r") as ifile:
for line in ifile:
line_split = line.split(",")
d[line_split[2]] += 1
print(str(len(d)) + " uniq")