프로그래밍/알고리즘

(Baekjoon) - Jumbled Words (no commentary)

레인보우떡 2022. 10. 19. 00:57

Oh, this is my first english algorithum problem..!! 

 

so funny yaya

while 1:
    s = input()
    if s == "#":
        break
    else:
        l = s.split()
        count = 0
        while count < len(l):

            if len(l[count]) <= 3:
                pass
            else:
                l[count][1:-1].replace(l[count][1:-1], l[count][:])
                rs = list(l[count][1:-1])
                rs.reverse()
                l[count] = l[count].replace(l[count][1:-1], "".join(rs))
            count += 1

        print(" ".join(l))

 

...

 

한 60%? 정도 이해하고 인풋 아웃풋보고 완전 이해했다.

 

큭.

 

728x90