"JS10 Day 7: Regular Expressions I"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
9번째 줄: 9번째 줄:
----
----


<source lang='javascript'>
<syntaxhighlight lang='javascript'>
'use strict';
'use strict';


33번째 줄: 33번째 줄:
     return inputString[currentLine++];
     return inputString[currentLine++];
}
}
</source>
</syntaxhighlight>
<source lang='javascript'>
<syntaxhighlight lang='javascript'>
function regexVar() {
function regexVar() {
     /*
     /*
46번째 줄: 46번째 줄:
     return re;
     return re;
}
}
</source>
</syntaxhighlight>
<source lang='javascript'>
<syntaxhighlight lang='javascript'>
function main() {
function main() {
     const re = regexVar();
     const re = regexVar();
54번째 줄: 54번째 줄:
     console.log(re.test(s));
     console.log(re.test(s));
}
}
</source>
</syntaxhighlight>

2020년 11월 2일 (월) 02:52 기준 최신판

개요[ | ]

JS10 Day 7: Regular Expressions I
해커랭크 10 Days of Javascript
# 문제 비고
6-7 Day e
18 JS10 Day 6: Bitwise Operators
19 JS10 Day 6: JavaScript Dates
20 JS10 Day 7: Regular Expressions I
21 JS10 Day 7: Regular Expressions II
22 JS10 Day 7: Regular Expressions III

'use strict';

process.stdin.resume();
process.stdin.setEncoding('utf-8');

let inputString = '';
let currentLine = 0;

process.stdin.on('data', inputStdin => {
    inputString += inputStdin;
});

process.stdin.on('end', _ => {
    inputString = inputString.trim().split('\n').map(string => {
        return string.trim();
    });
    
    main();    
});

function readLine() {
    return inputString[currentLine++];
}
function regexVar() {
    /*
     * Declare a RegExp object variable named 're'
     * It must match a string that starts and ends with the same vowel (i.e., {a, e, i, o, u})
     */
    let re = /^([aeiou]).*\1$/;
    /*
     * Do not remove the return statement
     */
    return re;
}
function main() {
    const re = regexVar();
    const s = readLine();
    
    console.log(re.test(s));
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}