https://school.programmers.co.kr/learn/courses/30/lessons/134239# 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 우박수열로 만든 꺾은선 그래프의 일정 구간 넓이를 구하는 문제이다. 코드 import itertools def solution(k, ranges): answer = [] sum=[0] while k!=1: if k%2==0: next_k=k/2 sum.append(next_k*1.5) else: next_k=k*3+1 sum.append(k+(next_k-k)*0.5) k=next_k area..