|
| 1 | +<p>Given an array of integers <code>arr</code>, return <em>the number of subarrays with an <strong>odd</strong> sum</em>.</p> |
| 2 | + |
| 3 | +<p>Since the answer can be very large, return it modulo <code>10<sup>9</sup> + 7</code>.</p> |
| 4 | + |
| 5 | +<p> </p> |
| 6 | +<p><strong class="example">Example 1:</strong></p> |
| 7 | + |
| 8 | +<pre> |
| 9 | +<strong>Input:</strong> arr = [1,3,5] |
| 10 | +<strong>Output:</strong> 4 |
| 11 | +<strong>Explanation:</strong> All subarrays are [[1],[1,3],[1,3,5],[3],[3,5],[5]] |
| 12 | +All sub-arrays sum are [1,4,9,3,8,5]. |
| 13 | +Odd sums are [1,9,3,5] so the answer is 4. |
| 14 | +</pre> |
| 15 | + |
| 16 | +<p><strong class="example">Example 2:</strong></p> |
| 17 | + |
| 18 | +<pre> |
| 19 | +<strong>Input:</strong> arr = [2,4,6] |
| 20 | +<strong>Output:</strong> 0 |
| 21 | +<strong>Explanation:</strong> All subarrays are [[2],[2,4],[2,4,6],[4],[4,6],[6]] |
| 22 | +All sub-arrays sum are [2,6,12,4,10,6]. |
| 23 | +All sub-arrays have even sum and the answer is 0. |
| 24 | +</pre> |
| 25 | + |
| 26 | +<p><strong class="example">Example 3:</strong></p> |
| 27 | + |
| 28 | +<pre> |
| 29 | +<strong>Input:</strong> arr = [1,2,3,4,5,6,7] |
| 30 | +<strong>Output:</strong> 16 |
| 31 | +</pre> |
| 32 | + |
| 33 | +<p> </p> |
| 34 | +<p><strong>Constraints:</strong></p> |
| 35 | + |
| 36 | +<ul> |
| 37 | + <li><code>1 <= arr.length <= 10<sup>5</sup></code></li> |
| 38 | + <li><code>1 <= arr[i] <= 100</code></li> |
| 39 | +</ul> |
0 commit comments