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
- 코딩테스트
- 취미
- 노노그램
- 바질토마토뭐시기
- 메일우유
- 나쫌
- 잠실새내
- 미앤아이
- 뜨아거
- LeetCode
- 하스스톤
- 누룽지소금빵
- 알고리즘테스트
- 밥먹고
- 송리단
- 맛집
- 버즈2프로
- DIY
- 서울제빵소
- 코테
- 발더스게이트
- 발더스모드
- javascript
- 메탈퍼즐
- 토이프로젝트
- 3d퍼즐
- 게임
- 천등
- 눈알빠지겠네
- 발더스3
Archives
- Today
- Total
목록2022/11/25 (1)
.Zzumbong
[leetCocd/JS] 907. Sum of Subarray Minimums
문제 설명 Given an array of integers arr, find the sum of min(b), where b ranges over every (contiguous) subarray of arr. Since the answer may be large, return the answer modulo 109 + 7. 정수 배열에서 min(b)의 합을 구하는데, b는 arr의 모든 연속된 하위 배열이란다. 예제를 보면 이해하 간다. 숫자가 크니까 modulo로 나머지를 리턴하란다. 입출력 예 Example 1: Input: arr = [3,1,2,4] Output: 17 Explanation: Subarrays are [3], [1], [2], [4], [3,1], [1,2], [2,4], [3,..
coding test/leetCode
2022. 11. 25. 13:11