diff options
author | boredpasta <boredpasta@tutanota.com> | 2025-01-13 07:00:52 +0200 |
---|---|---|
committer | boredpasta <boredpasta@tutanota.com> | 2025-01-13 07:22:23 +0200 |
commit | f85949f85266768ec1bd5e3d150e4ac71feabcf1 (patch) | |
tree | a6c81c5ec164d209bf0e664d6a6a22ddd42cd63f /2015/01/not_quite_lisp2.py | |
parent | af9283db3825dbfede0a4127a004f0b077fe6f7c (diff) |
Diffstat (limited to '2015/01/not_quite_lisp2.py')
-rw-r--r-- | 2015/01/not_quite_lisp2.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2015/01/not_quite_lisp2.py b/2015/01/not_quite_lisp2.py new file mode 100644 index 0000000..a688b3b --- /dev/null +++ b/2015/01/not_quite_lisp2.py @@ -0,0 +1,14 @@ +pos = 1 +floor = 0 +with open("input", encoding="utf-8") as f: + text = f.read() +for char in text: + if char == '(' or char == ')': + if char == '(': + floor += 1 + else: + floor -= 1 + if floor == -1: + print(f"basement position is {pos}") + break; + pos += 1 |