Implement 2019 day 8

This commit is contained in:
2021-01-23 22:34:58 +01:00
parent 18351f93eb
commit 4418292dc4
6 changed files with 44 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
from typing import TextIO
import networkx
import networkx # type: ignore
def read_graph(data: TextIO) -> networkx.DiGraph: