add graph loading
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-10-02 00:18:14 +02:00
parent 1152724969
commit 81efd01ce5
7 changed files with 243503 additions and 0 deletions

8
format_file.py Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python3
with open('valos_halozat.txt') as halozat:
halozat.readline()
sorok=int(halozat.readline())
for _ in range(sorok):
hal = halozat.readline()
print(f"{list(filter(None, hal.split(' ')))[0]} {list(filter(None, hal.split(' ')))[1]}")