반응형
Recent Posts
Notice
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 |
Tags
- 일곱 난쟁이
- 백준 2309
- 큐
- 스택
- python 2309
- softeer
- python 10989
- 99항해
- Python 20001
- 항해99
- python 14503
- 백준
- BFS
- 코딩테스트 준비
- boj 2309
- 구현
- 파이썬
- 백준 막대기
- 백준 팰린드롬수
- Python
- 개발자 취업
- 백준 카드1
- python 1259
- 99클럽
- BOJ
- leetcode 2405
- leetcode
- 프로그래머스
- python 10250
- til
Archives
- Today
- Total
목록2024/06/11 (1)
동까의 코딩
[99클럽] 22일차 TIL
https://leetcode.com/problems/capacity-to-ship-packages-within-d-days/submissions/1284760441/ leetcode 문제사이트에 있는 수열 문제입니다. class Solution(object): def findDays(self, weights, D, capacity): weight_sum = 0 days = 1 for w in weights: weight_sum += w if weight_sum > capacity: days += 1 weight_sum = w return days > D ..
문제 풀이/99클럽
2024. 6. 11. 19:11