Skip to content

Commit 62b151e

Browse files
authored
1 parent 6fb649e commit 62b151e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Dynamic-Programming/Sliding-Window/PermutationinString.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ export function PermutationinString (s1, s2) {
2626
while (end < s2.length - 1) {
2727
if (equals(s1Set, s2Set)) return true
2828
end++
29-
console.log(s2[start], s2[end], equals(s1Set, s2Set))
3029
const c1 = s2[start]
3130
const c2 = s2[end]
3231
if (s2Set[c1] > 0) s2Set[c1]--

0 commit comments

Comments
 (0)