백준. 9093번. 단어 뒤집기 파이썬 풀이

minan·2021년 7월 1일
0

백준

목록 보기
16/35

백준. 9093번. 단어 뒤집기 파이썬 풀이

문제링크 https://www.acmicpc.net/problem/9093

n = int(input())

for _ in range(n):
    temp = input().split()

    for s in temp:
        print(s[::-1], end=' ')
    print()
profile
https://github.com/minhaaan

0개의 댓글

관련 채용 정보