add to gothib

This commit is contained in:
Ultrablob 2025-01-20 11:37:00 -05:00
commit 523f45b46a
28 changed files with 419 additions and 0 deletions

12
parking.py Normal file
View file

@ -0,0 +1,12 @@
num = int(input())
day1 = list(input())
day2 = list(input())
total = 0
for first, second in zip(day1, day2):
if first == "C" and second == "C":
total += 1
print(total)