Skip to content

Commit 370e924

Browse files
authored
Merge pull request #3526 from aadil42/patch-73
Create 2038-remove-colored-pieces-if-both-neighbors-are-the-same-color
2 parents 4d8ee78 + 0058792 commit 370e924

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/**
2+
* Counting
3+
* Time O(n) | Space O(1)
4+
* https://leetcode.com/problems/remove-colored-pieces-if-both-neighbors-are-the-same-color
5+
* @param {string} colors
6+
* @return {boolean}
7+
*/
8+
var winnerOfGame = function(colors) {
9+
10+
let aScore = 0;
11+
let bScore = 0;
12+
13+
const canRemove = (index) => {
14+
if (colors[index] === colors[index-1] && colors[index] === colors[index+1]) return colors[index];
15+
return false;
16+
}
17+
18+
for (let i = 1; i < colors.length; i++) {
19+
if (canRemove(i) === 'A') aScore++;
20+
if (canRemove(i) === 'B') bScore++;
21+
}
22+
23+
return aScore - bScore > 0;
24+
};

0 commit comments

Comments
 (0)