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
- 발더스3
- 송리단
- 눈알빠지겠네
- 하스스톤
- LeetCode
- 노노그램
- 천등
- 뜨아거
- 잠실새내
- 코테
- 나쫌
- 맛집
- 미앤아이
- 3d퍼즐
- 메탈퍼즐
- 누룽지소금빵
- 발더스게이트
- 밥먹고
- 코딩테스트
- 바질토마토뭐시기
- javascript
- 서울제빵소
- 게임
- DIY
- 버즈2프로
- 발더스모드
- 취미
- 메일우유
- 알고리즘테스트
- 토이프로젝트
Archives
- Today
- Total
목록알고리즘테스트 (1)
.Zzumbong
[leetCode/JS] 343. Integer Break
난이도 [ 🤔 ] Medium 문제 설명 Given an integer n, break it into the sum of k positive integers, where k >= 2, and maximize the product of those integers. Return the maximum product you can get. 입출력 예 Example 1: Input: n = 2 Output: 1 Explanation: 2 = 1 + 1, 1 × 1 = 1. Example 2: Input: n = 10 Output: 36 Explanation: 10 = 3 + 3 + 4, 3 × 3 × 4 = 36. Constraints 2
coding test/leetCode
2023. 10. 6. 09:55