목록programmers_프로그래머스 (30)
haju__log
[프로그래머스][Lv.1][python] 제일 작은 수 제거하기
def solution(arr): arr.remove(min(arr)) if len(arr)==0: arr.append(-1) return arr else : return arr
programmers_프로그래머스
2023. 4. 19. 18:12
[프로그래머스][Lv.1][python] 콜라츠 추측
def solution(num): answer = 0 while (num != 1) : if num % 2 == 0: num /= 2 else: num = num * 3 + 1 answer+=1 if answer
programmers_프로그래머스
2023. 4. 19. 18:05
[프로그래머스][Lv.1][python] x만큼 간격이 있는 n개의 숫자
def solution(x,n): answer = [] tmp=x for i in range(n): answer.append(tmp) tmp+=x return answer
programmers_프로그래머스
2023. 4. 19. 17:45