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

[백준/파이썬] 31656번 Sticky Keys

by 현장 2024. 3. 26.

-Code

s = input()
res, temp = "", ""

for w in s:
    if temp != w:
        temp = w
        res += w

print(res)