This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from collections import deque | |
| from collections.abc import Iterator, Sequence | |
| from typing import Final, Protocol | |
| class SeekableBytesFile(Protocol): | |
| def seek(self, position: int, whence: int = ..., /) -> int: ... | |
| def read(self, amount: int, /) -> bytes: ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ast | |
| import sys | |
| import keyword | |
| import seaborn | |
| from pathlib import Path | |
| from collections import Counter | |
| from dataclasses import dataclass | |
| LENGTHS_COUNT = Counter[int]() |
NewerOlder