일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Django
- AWS S3
- github
- 갓재석
- depends
- 코딩테스트
- AWS
- EC2
- depends_on
- javascript
- METACLASS
- classmethod
- DB
- 2차 코딩테스트
- springboot 3.0.0
- TypeError: 'property' object is not iterable
- docker-compose
- docker
- 우아한테크코스 2차
- classproperty
- OperationalError
- github skyline
- MySQL server on 'db' (115)
- 프로그래머스
- python
- S3
- python all testcode
- 재귀함수가 뭔가요
- Spring
- 우아한 테크코스 2차 합격
Archives
목록다리를 지나는 트럭 (1)
hanbin.dev
[코딩테스트] 프로그래머스 다리를 지나는 트럭 with Python
문제 풀이 코드 def solution(bridge_length, weight, truck_weights): # sum(다리를 건너는 트럭) + truck_weights[0] 가 weight이 안넘으면 # 다리를 건너는 트럭.append(truck_weights[0]) # 다리를 건너는 트럭[0][1] 을 시간이 지날때 마다 += 1 해줌 # 다리를 건너는 트럭[0][1] 이 weight보다 크거나 같으면 # 다리를 건너는 트럭[0] 을 다리를 지난 트럭으로 이동 # 위 과정을 반복 time = 0 truck_weights = list(map(lambda x : [int(x),0],truck_weights)) #1 current_bridge = [] while True: time += 1 current_..
코딩테스트
2021. 5. 9. 14:17