Number of Sublists With Sum of Target
Given a list of integers nums and an integer target, return the number of sublists whose sum is equal to target.
Constraints
n ≤ 100,000wherenis the length ofnums
https://binarysearch.com/problems/Number-of-Sublists-With-Sum-of-Target
Examples
Example 1
Input
- nums =
[2, 0, 2] - target =
2
Output
- answer =
4
Explanation
We have these sublists whose sum is 2: [2], [2, 0], [0, 2], [2]
Leave a comment