https://programmers.co.kr/learn/courses/30/lessons/87389
def solution(n):
for i in range(1,n):
if n%i==1:
return i
주어진 조건대로 그대로 구현하면 되는 문제다.
'Programming > Programmers' 카테고리의 다른 글
[프로그래머스] 오픈채팅방(Python) (0) | 2021.10.22 |
---|---|
[프로그래머스] 부족한 금액 계산하기(Python) (0) | 2021.10.21 |
[프로그래머스] 여행 경로(Python) (0) | 2021.10.21 |
[프로그래머스] 단어 변환(Python) (0) | 2021.10.21 |
[프로그래머스] 네트워크(Python) (0) | 2021.10.21 |
댓글