코딩 테스트 (Coding Test)
[프로그래머스] 나머지가 1이 되는 수 찾기
Universe_lee
2023. 1. 9. 13:51
나의 풀이
def solution(n):
for i in range(2, n):
if n % i == 1:
return i