We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce2b1f commit a538febCopy full SHA for a538feb
src/main/java/com/fishercoder/solutions/_560.java
@@ -3,18 +3,6 @@
3
import java.util.HashMap;
4
import java.util.Map;
5
6
-/**
7
- * 560. Subarray Sum Equals K
8
- *
9
- * Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k.
10
-
11
- Example 1:
12
- Input:nums = [1,1,1], k = 2
13
- Output: 2
14
- Note:
15
- The length of the array is in range [1, 20,000].
16
- The range of numbers in the array is [-1000, 1000] and the range of the integer k is [-1e7, 1e7].
17
- */
18
public class _560 {
19
20
public static class Solution1 {
0 commit comments