Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- AWS
- Programmers
- Gunicorn
- dictionary
- pytest
- stateless
- 백준
- algorithm
- permutations
- Q objects
- was
- codecov
- ORM
- greedy
- utils
- Query
- ws
- Bruteforce
- Django
- Stack
- combinations
- stack&que
- TDD
- Git
- postreSQL
- SQL
- Unit Testing
- stateful
- Python
- HTTP 완벽 가이드
Archives
- Today
- Total
해피 코딩!
[프로그래머스] 기능개발 본문
해당 문제 링크
def solution(progresses, speeds):
answer = []
while progresses:
for index, value in enumerate(progresses):
progresses[index] += speeds[index]
cnt = 0
while progresses and progresses[0] >= 100:
progresses.pop(0)
speeds.pop(0)
cnt += 1
if cnt:
answer.append(cnt)
return answer
정말 매번 고민하지만 너무 어렵게 생각하는 것 같다..
결국 인터넷을 참고하여 문제를 풀게 되었으며 답을 보게 되면 왜 이렇게 생각을 못하였는지 항상 아쉬움이 남는다.
'알고리즘' 카테고리의 다른 글
[프로그래머스] 두 개 뽑아서 더하기 (0) | 2020.12.12 |
---|---|
[프로그래머스] 다리를 지나는 트럭 (0) | 2020.12.12 |
[프로그래머스] 내적 (0) | 2020.12.12 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2020.12.12 |
[프로그래머스]3진법 뒤집기 (0) | 2020.12.12 |
Comments