This commit is contained in:
Daniel Weber 2024-12-22 18:10:51 -05:00
parent 11b3fde3f5
commit c682b07075

View File

@ -33,10 +33,10 @@ def match_count(p, t):
return count
def part_one(p, t):
p1=0
p1 = 0
for ps in p:
if check_matchp1(ps, t):
p1+=1
p1 += 1
print("p1: ", p1)
def part_two(p, t):