본문 바로가기
프로그래밍언어/Code_Practice

[SW Expert Academy] 초심자의 회문 검사

by 스꼬맹이브로 2021. 1. 21.
728x90
반응형
SMALL

*문제의 저작권은 SW Expert에 있습니다.
문제 링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PyTLqAf4DFAUq&categoryId=AV5PyTLqAf4DFAUq&categoryType=CODE

 

 

T = int(input())
for test_case in range(1, T + 1):
    test = list(map(str, input().split()))
    test = ('').join(test)
    a = 0
    for i in range(0,int(len(test)/2)) :
        a = (lambda x : 1 if x[i] == x[len(x)-1-i] else 0)(test)
        #if test[i] == test[len(test)-1-i] :
        #    a = 1
        #else :
        #    a = 0
    print("#{} {}".format(test_case,a))
728x90
반응형
LIST