-
Notifications
You must be signed in to change notification settings - Fork 25
/
7 kyu Exes and Ohs.js
42 lines (42 loc) · 984 Bytes
/
7 kyu Exes and Ohs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// #1
// function XO(str) {
// let equal = 0;
// str.split('').forEach((c) => {
// if ('x' === c.toLowerCase()) {
// equal += 1;
// }
// if ('o' === c.toLowerCase()) {
// equal -= 1;
// }
// });
// return equal === 0;
// }
// #2
// function XO(str, equal = 0) {
// str.split``.forEach((c) => {
// 'x' === c.toLowerCase() && equal++;
// 'o' === c.toLowerCase() && equal--;
// });
// return equal === 0;
// }
// #3
// const XO = (str) =>
// str.split``.reduce((a, c) => {
// if ('x' === c.toLowerCase()) {
// return a + 1;
// } else if ('o' === c.toLowerCase()) {
// return a - 1;
// } else return a;
// }, 0) === 0;
// #4
// const XO = (str) =>
// str
// .toLowerCase()
// .split('')
// .reduce((a, c) => ('x' === c ? ++a : 'o' === c ? --a : a), 0) === 0;
// #5
const XO = (str) => {
const x = str.match(/x/gi);
const o = str.match(/o/gi);
return (x && x.length) === (o && o.length);
};