Skip to content

Commit 93fe664

Browse files
authored
Added Spacing
1 parent 370e924 commit 93fe664

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/2038-remove-colored-pieces-if-both-neighbors-are-the-same-color.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var winnerOfGame = function(colors) {
1111
let bScore = 0;
1212

1313
const canRemove = (index) => {
14-
if (colors[index] === colors[index-1] && colors[index] === colors[index+1]) return colors[index];
14+
if (colors[index] === colors[index - 1] && colors[index] === colors[index + 1]) return colors[index];
1515
return false;
1616
}
1717

0 commit comments

Comments
 (0)