fork download
  1. function magic(s) {
  2. // using set instead of list because its faster lookups
  3. const vowels = new Set(["a", "e", "i", "o", "u"]);
  4. let result = [];
  5.  
  6. // using regular lookup instead of (map,reverse) to reduce the complexity -- o(n) times
  7. for (let i = s.length - 1; i >= 0; i--) {
  8. let char = s[i];
  9. let upperChar = vowels.has(char) ? char.toUpperCase() : char;
  10.  
  11. if (!(i === 0 && !vowels.has(char))) result.push(upperChar);
  12. }
  13.  
  14. return result.join("-");
  15. }
  16.  
  17. console.log(magic("hellothere")); // "E-r-E-h-t-O-l-l-E"
  18.  
Success #stdin #stdout 0.1s 31488KB
stdin
Standard input is empty
stdout
E-r-E-h-t-O-l-l-E