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 res1, res2 = 0, 0
for c in input: for i in range(len(input)):
match c match input[i]:
case '(': case '(':
res1 += 1 res1 += 1
case ')': case ')':

View File

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