Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Max Array Sum
- Find the nearest clone
- Algorithm
- Recursion: Davis' Staircase
- candies
- hackerrank
- python
- 매칭점수
- Interview Preparation Kit
- 야근지수
- 해커랭크
- 프로그래머스
- 격파르타 장점
- programmers
- 파이썬
- 머신러닝
- 격파르타 후기
- [sqld]자격증합격
- Special String Again
- Common Child
- 격파르타 합격후기
- Reverse Shuffle Merge
- BFS: Shortest Reach in a Graph
- 백준
- 알고리즘
- 피보나치 함수
- Roads and Libraries
- 코딩테스트
- DFS: Connected Cell in a Grid
- 구슬탈출2
Archives
- Today
- Total
Archive
[BOJ] 9093. 단어 뒤집기 본문
풀이
- 문장 입력받으면 split()을 사용해 띄어쓰기 단위로 단어 구분 -> 각각의 단어를 뒤집음.
n = int(input())
ans = []
for _ in range(n):
sen = input().split(' ')
ans.append([i[::-1] for i in sen])
for a in ans:
print(' '.join(a))
'공부 > Algorithm' 카테고리의 다른 글
[BOJ] 9012 괄호 (0) | 2021.01.24 |
---|---|
[BOJ] 10828. 스택 (0) | 2021.01.16 |
[Programmers] [Level3] 매칭 점수 (0) | 2020.09.10 |
[Hackerrank] [Medium] Find the nearest clone (0) | 2020.09.04 |
[Hackerrank] [Medium] Roads and Libraries (0) | 2020.09.02 |
Comments