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));输出结果)())())
热门推荐
10 美好超市员工祝福语简短
11 张延老公生日祝福语简短
12 音乐新年祝福语简短霸气
13 茶叶开业蛋糕祝福语简短
14 沃尔沃购车祝福语简短英文
15 语文作文《毕业祝福语简短
16 母猪生小孩祝福语简短
17 新年祝福语简短情侣文案
18 对象爸爸生日祝福语简短