[백준] #1254 팰린드롬 만들기 python
2023. 5. 1. 16:17
https://www.acmicpc.net/problem/1254
📕 설명 📕
python의 indexing을 이용하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
S=input()
for i in range(len(S)):
if S[i:]==S[i:][::-1]:
print(len(S)+i)
break
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1455 뒤집기 II python (0) | 2023.05.04 |
---|---|
[백준] #1441 비슷한 단어 python (0) | 2023.05.03 |
[백준] #2535 아시아 정보올림피아드 python (0) | 2023.04.14 |
[백준] #5426 비밀 편지 python (0) | 2023.04.12 |
[백준] #1057 토너먼트 python (0) | 2023.04.11 |