add to gothib
This commit is contained in:
commit
523f45b46a
28 changed files with 419 additions and 0 deletions
12
parking.py
Normal file
12
parking.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue