Cleanup imports

This commit is contained in:
Gabriel Augendre 2020-12-12 18:53:23 +01:00
parent 025ecbce31
commit 1360952c72
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4
4 changed files with 2 additions and 10 deletions

View file

@ -1,6 +1,5 @@
from collections import Counter
from math import prod
from typing import List, Tuple
from typing import List
TREE = "#"

View file

@ -1,4 +1,3 @@
import copy
import itertools
from typing import List

View file

@ -1,4 +1,3 @@
import copy
import functools
import itertools
from typing import List, Tuple

View file

@ -1,11 +1,6 @@
import copy
import functools
import itertools
from collections import Counter
from pprint import pprint
from typing import List, Tuple, Iterable, Dict, Optional
import networkx as nx
from typing import List, Tuple, Dict, Optional
def main(filename: str, expected_part_1: int = None, expected_part_2: int = None):