-
[백준 / Python] 9093번 단어 뒤집기 | 초코더알고리즘/백준 2020. 1. 26. 16:41
https://www.acmicpc.net/problem/9093
t=int(input()) ans=[list(map(lambda x: x[::-1], input().split())) for _ in range(t)] for words in ans: #리스트 안의 요소들을 문자열로 한꺼번에 출력해주는 '*' print(*words)
'알고리즘 > 백준' 카테고리의 다른 글
[백준 / python] 1874번 스택 수열 | 초코더 (0) 2020.01.30 [백준 /Python] 9012번 괄호 | 초코더 (0) 2020.01.26 [백준 / Python] 10828 스택 | 초코더 (0) 2020.01.26 [백준 / Python] 7576번 토마토 | 초코더 (0) 2020.01.20 [백준 / Python] 2178번 미로 탐색 | 초코더 (0) 2020.01.19