JavaScript中基于字符频率的编码字符串
问题
我们需要编写一个 JavaScript 函数,它接受一个字符串 str 作为第一个也是唯一的参数。
我们的函数应该根据输入字符串创建一个新字符串,其中新字符串中的每个字符都是 '(' 如果该字符在原始字符串中只出现一次,或者 ')' 如果该字符在原始字符串中出现多次。
我们应该忽略资本
例如,如果函数的输入是 -
输入
const str = 'Success';
输出
const output = ')())())';
示例
以下是代码 -
const str = 'Success';输出结果const mapString = (str = '') => {
const mainStr = str.toLowerCase()
const hash = {}
let res = ''
for (let char of mainStr) {
hash[char] = ~~hash[char] + 1
}
for (let char of mainStr) {
if (hash[char] > 1) {
res += ')'
} else {
res += '('
}
}
return res
};
console.log(mapString(str));
)())())
以上是 JavaScript中基于字符频率的编码字符串 的全部内容, 来源链接: utcz.com/z/355105.html