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 | 29 | 30 |
Tags
- monthPicker
- CentOS
- 이것이리눅스다
- 중첩쿼리
- java
- SQL
- 파이썬
- 멀티쓰레드프로그래밍
- 7kyu
- 자바기초스터디
- JavaScript
- 주민번호마스킹
- class파일바로보기
- VMware
- 8kyu
- 이클립스
- CentOS8
- Oralce
- 6kyu
- Linux
- https
- 남산타워뷰
- 오류
- Codewars
- 서울복층에어비앤비
- 시즌1
- Python
- 서울에어비앤비
- Eclipse
- 사용자변경
Archives
- Today
- Total
보통사람
[7kyu] 문자열 'x'와'o'의 개수가 같은지 비교 (Exes and Ohs) 본문
/**
* <pre>
* 문자열 'x'와'o'의 개수가 같은지 비교 (Exes and Ohs)
*
* 문자열에 'x'와 'o'가 같은지 확인하십시오.
* 이 메서드는 부울을 반환하고 대 / 소문자를 구분해야합니다.
* 문자열에는 모든 문자가 포함될 수 있습니다.
*
* Check to see if a string has the same amount of 'x's and 'o's.
* The method must return a boolean and be case insensitive.
* The string can contain any char.
* </pre>
*
* @auther : pej
* @date : 2019. 03. 23.
* @param : {String} 비교할 문자열
* @return : {Boolean} true / false
* @example : XO("ooxx") ==> true
* XO("ddddd") ==> true
* XO("xooxx") ==> false
*
*/
function XO(str) {
var result = false;
if ( /o|x/gi.exec(str) ) {
var oLen = ( str.match(/o/gi) || [] ).length; // 'o'의 개수
var xLen = ( str.match(/x/gi) || [] ).length; // 'x'의 개수
if (oLen == xLen) {
result = true;
}
} else { // 'o'와 'x'가 없으면 true를 반환
result = true;
}
return result;
}
- 방법2) - 다른 사람이 한 것
function XO(str) {
var x = (str.match(/x|X/g) || []).length;
var o = (str.match(/o|O/g) || []).length;
return x === o;
}
'Codewars > Javascript' 카테고리의 다른 글
[7kyu] 정수 내림차순으로 반환 (Descending Order) (0) | 2019.08.02 |
---|---|
[7kyu] 가장 짧은 단어의 길이 찾기 (Shortest Word) (0) | 2019.08.02 |
[7kyu] 해당 정수가 제곱근인지 확인 (You're a square!) (0) | 2019.08.02 |