본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 7120번 String

by 현장 2023. 6. 18.

-Code

s = input()
res = ""

for i in range(len(s) - 1):
    if s[i] != s[i + 1]:
        res += s[i]
print(res + s[-1])