Skip to content

Commit a538feb

Browse files
refactor 560
1 parent fce2b1f commit a538feb

File tree

1 file changed

+0
-12
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-12
lines changed

src/main/java/com/fishercoder/solutions/_560.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,6 @@
33
import java.util.HashMap;
44
import java.util.Map;
55

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-
*/
186
public class _560 {
197

208
public static class Solution1 {

0 commit comments

Comments
 (0)