일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- TypeError: 'property' object is not iterable
- depends_on
- Spring
- classmethod
- docker
- METACLASS
- 코딩테스트
- 우아한 테크코스 2차 합격
- 갓재석
- S3
- python
- javascript
- MySQL server on 'db' (115)
- Django
- AWS S3
- AWS
- EC2
- python all testcode
- classproperty
- 2차 코딩테스트
- 프로그래머스
- OperationalError
- 우아한테크코스 2차
- 재귀함수가 뭔가요
- depends
- DB
- github skyline
- docker-compose
- github
- springboot 3.0.0
Archives
목록프린터 (1)
hanbin.dev
[코딩테스트] 프로그래머스 프린터 with Python
아이디어 대기열의 첫번째가 나머지 보다 크다면 대기열에서 삭제 (인쇄) => 대기열의 첫번째 보다 나머지가 작지 않다면 대기열 맨 뒤로 보냄 하나가 인쇄 될 때 마다 answer += 1 만약 인쇄 된 문서의 순서(i)가 location과 일치한다면 answer return 하나라도 첫번째 보다 크다면 대기열 맨 뒤로 보냄 문제 풀이 코드 def solution(priorities, location): answer = 0 priorities = [(i,value) for i, value in enumerate(priorities)] # 1 while True: move_to_back = False for priority in priorities: # 2 if priorities[0][1] < priori..
코딩테스트
2021. 5. 10. 13:48