Created
March 4, 2021 16:30
-
-
Save MinSomai/cefd4c15cb74441d6f44d862ef279828 to your computer and use it in GitHub Desktop.
Day 7 : Javascript | Regular Expressions I - Hackerrank.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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$/im; | |
/* | |
* Do not remove the return statement | |
*/ | |
return re; | |
} | |
function main() { | |
const re = regexVar(); | |
const s = readLine(); | |
console.log(re.test(s)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment