Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MinSomai/cefd4c15cb74441d6f44d862ef279828 to your computer and use it in GitHub Desktop.
Save MinSomai/cefd4c15cb74441d6f44d862ef279828 to your computer and use it in GitHub Desktop.
Day 7 : Javascript | Regular Expressions I - Hackerrank.js
'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