This commit is contained in:
2021-12-04 10:29:51 +01:00
parent b8329f2c1a
commit 00fe6782c1
4 changed files with 684 additions and 1 deletions

3
3.py
View File

@@ -1,6 +1,7 @@
from __future__ import annotations
import sys
bitstrings = []
bitstrings: list[str] = []
for x in sys.stdin:
bitstrings.append(x.rstrip())