Skip to content

Commit 52f8bb8

Browse files
committed
Removed console
1 parent 760010e commit 52f8bb8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

palindrome/min-adjacent-swap.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ const minAdjacentSwap = (str) => {
3636
}
3737
const first = arr[i];
3838
const subarr = arr.indexOf(first, i+1);
39-
console.log('arr', arr);
40-
console.log('First', first, subarr);
4139
// Start swapping from where is find the element.
4240
// if (subarr > -1) {
4341
// if (i === j) {

0 commit comments

Comments
 (0)