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 | 31 |
Tags
- 파이썬릿코드풀기
- python xor
- 릿코드풀이
- leetcode풀이
- 파이썬 프로그래머스
- python Leetcode
- binary search
- 릿코드
- 릿코드 풀기
- 상가수익률계산기
- 알고리즘풀기
- LeetCode
- 파이썬 알고리즘
- 파이썬릿코드
- 파이썬알고리즘풀기
- python sorted
- 잇츠디모
- python 릿코드
- 릿코드풀기
- python 알고리즘
- leetcode풀기
- 코틀린기초
- python priority queue
- 파이썬 알고리즘 풀기
- 릿코드 파이썬
- python zip_longest
- 파이썬 릿코드
- leetcode 풀기
- 파이썬알고리즘
- 알고리즘풀이
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀이 - 1588. Sum of All Odd Length Subarrays 본문
반응형
1588. Sum of All Odd Length Subarrays
문제)
솔루션1)
class Solution:
def sumOddLengthSubarrays(self, arr: List[int]) -> int:
res = 0
n = len(arr)
for j in range(1, len(arr)+1, 2):
for i in range(n - j + 1):
res += sum(arr[i:i+j])
return res
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀기 - 461. Hamming Distance (0) | 2021.10.28 |
---|---|
LeetCode 풀기 - 1684. Count the Number of Consistent Strings (0) | 2021.10.26 |
LeetCode 풀이 - 1512. Number of Good Pairs (0) | 2021.10.21 |
LeetCode 풀이 - 1773. Count Items Matching a Rule (0) | 2021.10.19 |
LeetCode 풀이 - 2006. Count Number of Pairs With Absolute Difference K (0) | 2021.10.19 |
Comments