tc = int(input())
# 딕셔너리
for idx in range(1, tc+1):
str1 = input()
str_cnt = {s:0 for s in str1}
str2 = input()
for s in str2:
if s in str_cnt:
str_cnt[s] += 1
print('#{} {}'.format(idx, max(str_cnt.values())))
print(str_cnt)
'Algorithm > SW Expert Academy' 카테고리의 다른 글
[Python] 1219. 길찾기 (0) | 2021.09.14 |
---|---|
[Python] 2005. 파스칼의 삼각형 (0) | 2021.09.14 |
[Python] 4864. 문자열비교 (0) | 2021.09.07 |
[Python] 1216. 회문2 (0) | 2021.09.07 |
[Python] 4861. 회문 (0) | 2021.09.07 |