프로그래머스 고득점kit 기능개발 | Python
🔎 문제 설명
💚 Level 2
- 난이도 ★★☆☆ - 스택&큐
개발은 동시에 진행할 수 있으며, 배포는 앞에 있는 기능이 배포될 때 수행할 수 있다.
문제를 잘 읽자. 이 문제를 응용한 다른 문제가 있을 것 같다는 생각이 들었다.
혹시 아신다면 댓글로 알려주세요. 감사합니다 🙇♀️
💻 내 코드
def solution(progresses, speeds):
answer = []
while progresses:
cnt = 0
for i in range(len(progresses)):
progresses[i] += speeds[i]
while progresses and progresses[0] >= 100:
progresses.pop(0)
speeds.pop(0)
cnt += 1
if cnt > 0:
answer.append(cnt)
return answer
💙 You need to log in to GitHub to write comments. 💙
If you can't see comments, please refresh page(F5).