diff options
author | Thomas Voss <thomasvoss@live.com> | 2021-12-10 06:53:13 +0100 |
---|---|---|
committer | Thomas Voss <thomasvoss@live.com> | 2021-12-10 06:53:13 +0100 |
commit | 2025999a05b601075ba4b255121e38d5d6255800 (patch) | |
tree | 3b16e56995e9d4d25dfe52e8e268ea85ab71d0ab /2021/10 | |
parent | 422cd4dd15e21c16b21dae9fe0145bdc9d3d2a30 (diff) |
Use a string instead of a tuple
Diffstat (limited to '2021/10')
-rw-r--r-- | 2021/10/puzzles.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2021/10/puzzles.py b/2021/10/puzzles.py index 919638f..f423c43 100644 --- a/2021/10/puzzles.py +++ b/2021/10/puzzles.py @@ -7,7 +7,7 @@ from typing import Counter from functools import reduce # END PART 2 -OPEN = ("(", "[", "{", "<") +OPEN = "([{<" def main() -> None: |