@@ -50,21 +50,88 @@ If we add all these together we get 1 + 4 + 2 + 5 + 3 + 7 + 11 + 10 + 15 = 58</p
50
50
<li><code>1 <= arr[i] <= 1000</code></li>
51
51
</ul >
52
52
53
-
54
53
## Solutions
55
54
56
55
<!-- tabs:start -->
57
56
58
57
### ** Python3**
59
58
60
59
``` python
61
-
60
+ class Solution :
61
+ def sumOddLengthSubarrays (self , arr : List[int ]) -> int :
62
+ n = len (arr)
63
+ presum = [0 ] * (n + 1 )
64
+ for i in range (n):
65
+ presum[i + 1 ] = presum[i] + arr[i]
66
+
67
+ res = 0
68
+ for i in range (n):
69
+ for j in range (0 , n, 2 ):
70
+ if i + j < n:
71
+ res += presum[i + j + 1 ] - presum[i]
72
+ return res
62
73
```
63
74
64
75
### ** Java**
65
76
66
77
``` java
78
+ class Solution {
79
+ public int sumOddLengthSubarrays (int [] arr ) {
80
+ int n = arr. length;
81
+ int [] presum = new int [n + 1 ];
82
+ for (int i = 0 ; i < n; ++ i) {
83
+ presum[i + 1 ] = presum[i] + arr[i];
84
+ }
85
+ int res = 0 ;
86
+ for (int i = 0 ; i < n; ++ i) {
87
+ for (int j = 0 ; i + j < n; j += 2 ) {
88
+ res += presum[i + j + 1 ] - presum[i];
89
+ }
90
+ }
91
+ return res;
92
+ }
93
+ }
94
+ ```
95
+
96
+ ### ** C++**
97
+
98
+ ``` cpp
99
+ class Solution {
100
+ public:
101
+ int sumOddLengthSubarrays(vector<int >& arr) {
102
+ int n = arr.size();
103
+ int presum[ n + 1] ;
104
+ for (int i = 0; i < n; ++i) presum[ i + 1] = presum[ i] + arr[ i] ;
105
+ int res = 0;
106
+ for (int i = 0; i < n; ++i)
107
+ {
108
+ for (int j = 0; i + j < n; j += 2)
109
+ {
110
+ res += presum[ i + j + 1] - presum[ i] ;
111
+ }
112
+ }
113
+ return res;
114
+ }
115
+ };
116
+ ```
67
117
118
+ ### **Go**
119
+
120
+ ```go
121
+ func sumOddLengthSubarrays(arr []int) int {
122
+ n := len(arr)
123
+ presum := make([]int, n+1)
124
+ for i := range arr {
125
+ presum[i+1] = presum[i] + arr[i]
126
+ }
127
+ res := 0
128
+ for i := 0; i < n; i++ {
129
+ for j := 0; i+j < n; j += 2 {
130
+ res += presum[i+j+1] - presum[i]
131
+ }
132
+ }
133
+ return res
134
+ }
68
135
```
69
136
70
137
### ** ...**
0 commit comments