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 |
Tags
- 주니어개발자멘토링
- MomentumParameters
- 백준
- 코딩부트캠프후기
- 항해플러스
- EnvCommandError
- 파이썬 |
- 항해
- Til
- 파이썬 클래스
- 파이썬 sep
- 파이썬 map 함수
- 99클럽 #99일지 #코딩테스트 #개발자스터디 #항해 #til
- 파이썬 int()
- Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
- cp949
- 99클럽
- vscode cp949
- not a git repository
- 파이썬
- 코딩테스트
- 99일지
- fatal:not a git repository
- print("""
- 주니어개발자역량강화
- 10430번
- print sep
- 개발자사이드프로젝트
- 항해99
- 개발자스터디
Archives
- Today
- Total
목록2024/06/08 (1)
선발대
[스파르타] 99클럽 2기 코테스터디 20일차 TIL / leet 1043
LeetCode: 1043. Partition Array for Maximum Sum (링크) class Solution: def maxSumAfterPartitioning(self, arr: List[int], k: int) -> int: dp = [0] * k dp[0] = arr[0] for i in range(1, len(arr)): cur_max = 0 max_at_i = 0 for j in range(i, i-k, -1): if j 0 else dp[-1] max_at_i = max(max_at_i, cur_sum + sub_sum)..
스파르타코딩클럽/활동 내용
2024. 6. 8. 23:43