2015 day 8.

This commit is contained in:
Mikael CAPELLE
2024-01-05 10:01:02 +01:00
parent f94e2bd831
commit 3fe9555cb1
4 changed files with 340 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ import logging
import operator
import os
import sys
from typing import Callable, Literal, TypeAlias, cast
from typing import Callable
VERBOSE = os.getenv("AOC_VERBOSE") == "True"
logging.basicConfig(level=logging.INFO if VERBOSE else logging.WARNING)