Post

leetcode(리트코드)-1588 Sum of All Odd Length Sumarrays(PYTHON)

leetcode(리트코드)-1588 Sum of All Odd Length Sumarrays(PYTHON)

leetcode 1588 - Sum of All Odd Length Subarrays 문제입니다.

1. 문제

https://leetcode.com/problems/sum-of-all-odd-length-subarrays/


2. Input , Output


3. 분류 및 난이도

Eazy 난이도 문제입니다.


4. 문제 해석

  • arr가 주어집니다.
  • 모든 연속된 인덱스를 홀수번 선택하여 더한 값을 리턴하세요.

5. code

코드설명

python

1
2
3
4
5
6
7
8
9
10
class Solution:
    def sumOddLengthSubarrays(self, arr: List[int]) -> int:
        res = 0 
        for i in range(len(arr)):
            window = 0
            while i + window < len(arr) : 
                res += sum(arr[i:i+window+1])
                window+=2
        return res
                    

6. 결과 및 후기, 개선점

필요시 c++로 짜드립니다.

설명이 필요하다면 댓글을 달아주세요.

This post is licensed under CC BY 4.0 by the author.