파일의 목록에 원래의 비밀번호, 비밀번호를 역순으로 한 단어가 있다.
n = int(input())
words = [input() for _ in range(n)]
for word in words:
if word[::-1] in words:
len_word=len(word)
mid=len_word//2
print(len_word, word[mid])
break
'여니의 취준 준비 > 코딩테스트 (Python)' 카테고리의 다른 글
[n1021] 회전하는 큐 in python (0) | 2021.10.13 |
---|---|
[n1094] 막대기 in python (0) | 2021.10.12 |
[n14502] 연구소 in python (0) | 2021.10.12 |
[n14888] 연산자 끼워넣기 in python (0) | 2021.10.12 |
[n10819] 차이를 최대로 in python (0) | 2021.10.12 |