| 2 | from collections import defaultdict, deque |
| 3 | |
| 4 | class RegexType: |
| 5 | SIMPLE = 0 |
| 6 | OR = 1 |
| 7 | LIST = 2 |
| 8 | |
| 9 | Regex = tuple[RegexType, str | list['Regex']] |
| 10 | Graph = dict[tuple[int,int],set[tuple[int,int]]] |
nothing calls this directly
no outgoing calls
no test coverage detected