This commit is contained in:
louiscklaw
2025-01-31 22:17:25 +08:00
parent cdc3678990
commit 3688f9ee24
100 changed files with 65454 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import os,sys
test = []
temp = ""
with open('./edges.csv','r') as fi:
test = list(map(lambda x: x.strip(), fi.readlines()))
test = test[1:]
print(len(test))
print(len(set(test)))