[백준] #9086 문자열 python
2023. 3. 15. 06:00
https://www.acmicpc.net/problem/9086
📕 설명 📕
문자열 slicing을 이용해 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
for i in range(int(input())):
S = input()
print(S[0]+S[-1])
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10812 바구니 순서 바꾸기 python (0) | 2023.03.18 |
---|---|
[백준] #11718 그대로 출력하기 python (0) | 2023.03.16 |
[백준] #10811 바구니 뒤집기 python (0) | 2023.03.14 |
[백준] #10813 공 바꾸기 python (1) | 2023.03.13 |
[백준] #10810 공 넣기 python (0) | 2023.03.12 |