Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- isSquare
- custom hook
- IBM
- DB2
- JDBC
- descendingOrder
- react
- TypeScript
- manifest.json
- Debug
- java api
- codewar
- useEffect
- type
- TABLESPACE
- react hook
- codewars
Archives
- Today
- Total
taesik
has the same amount of 'x's and 'o's. 본문
functions and trick/typescript_javascript
has the same amount of 'x's and 'o's.
taesikk 2022. 1. 23. 16:43function XO(str) {
let x = str.match(/x/gi);
let o = str.match(/o/gi);
return (x && x.length) === (o && o.length);
}