STUDY/Algorithm

[백준] 2386 도비의 영어공부

sinawi95 2021. 2. 6. 23:23
728x90
while True:
    s_list = input().split()
    ch = s_list[0]
    if ch == '#':
        break
    s = ''.join(s_list[1:])
    result = 0
    for ch_s in s:
        if ch == ch_s.lower():
            result += 1
    print(ch, result)

문제 그대로 작성하면 된다 이정도는...

'STUDY > Algorithm' 카테고리의 다른 글

[백준] 2504 괄호의값  (0) 2021.02.07
[백준] 3985 롤케이크  (0) 2021.02.06
[백준] 1334 다음 팰린드롬 수  (0) 2021.02.05
[백준] 1463 1로만들기  (0) 2021.02.05
[백준] 1259 팰린드롬수  (0) 2021.02.05