-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparentheticals.py
30 lines (21 loc) · 1.01 KB
/
parentheticals.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
I like parentheticals (a lot).
"Sometimes (when I nest them (my parentheticals) too much (like this (and this))) they get confusing."
Write a function that, given a sentence like the one above, along with the position of an opening parenthesis, finds the corresponding closing parenthesis.
Example: if the example string above is input with the number 10 (position of the first parenthesis), the output should be 79 (position of the last parenthesis).
"""
def find_closing_parens(string, opening_position):
open_parens = 1
for count, i in enumerate(string[opening_position + 1:]):
if i == '(':
open_parens += 1
elif i == ')':
open_parens -= 1
if open_parens == 0:
print(count + opening_position)
return count + opening_position + 1
print('does not return')
return False
assert find_closing_parens(
"Sometimes (when I nest them (my parentheticals) too much (like this (and this))) they get confusing.",
10) == 79