974. Subarray Sums Divisible by K
974. Subarray Sums Divisible by K
Description
Difficulty: Medium
Related Topics: Array, Hash Table, Prefix Sum
Given an integer array nums
and an integer k
, return the number of non-empty subarrays that have a sum divisible by k
.
A subarray is a contiguous part of an array.
Example 1:
1 | Input: nums = [4,5,0,-2,-3,1], k = 5 |
Example 2:
1 | Input: nums = [5], k = 9 |
Constraints:
- 1 <= nums.length <= 3 * 104
- -104 <= nums[i] <= 104
- 2 <= k <= 104
Hints/Notes
- preSum and mod
Solution
Language: C++
1 | class Solution { |