Skip to content

Commit a728a66

Browse files
authored
Update 0523-continuous-subarray-sum.js
Removing old commented code.
1 parent 1676dc6 commit a728a66

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

javascript/0523-continuous-subarray-sum.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
var checkSubarraySum = function(arr, k) {
1010
let sum = 0;
1111
const remainderMap = new Map([ [0, -1] ]);
12-
// remainderMap.set(0,-1);
1312

1413
for(let i = 0; i < arr.length; i++) {
1514
sum += arr[i];

0 commit comments

Comments
 (0)