[코딩테스트] 뒤집은 소수
인프런 코딩 테스트 준비
< 내가 작성한 코드 >
import sys
#sys.stdin = open("input.txt", "rt")
n = int(input())
def reverse(x) :
res = 0
while x > 0 :
remainder = x % 10
res = res * 10 + remainder
x = x // 10
return res
return remainder
def isPrime(x) :
if x == 1 :
return False
for i in range(2,x//2 + 1) :
if x % i == 0 :
return False
else :
return True
m = map(int,(input().split()))
for i in m :
if isPrime(reverse(i)) :
print(reverse(i), end = " ")
🧑🏻 후기
예전에 배웠던 소수 찾는 방법이나 거꾸로 뒤집는 함수를 복습한 것 같다.
Author And Source
이 문제에 관하여([코딩테스트] 뒤집은 소수), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sdj3261/코딩테스트-뒤집은-소수저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)