Skip to content

1678-goal-parser-interpretation

DevGod
DevGod
Vtuber
/**
* @param {string} command
* @return {string}
*/
var interpret = function(command) {
return command.replaceAll("()","o").replaceAll("(al)","al");
};