Minor changes

This commit is contained in:
PedroEdiaz
2025-12-01 21:43:05 -06:00
parent 915065d2e6
commit ca626276ef
2 changed files with 2 additions and 4 deletions

View File

@@ -12,8 +12,8 @@ except Exception as e:
res1, res2 = 0, 0
for c in input:
match c
for i in range(len(input)):
match input[i]:
case '(':
res1 += 1
case ')':

View File

@@ -1,5 +1,3 @@
import re
# Fill Input
try: