Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

输入一串字符串,根据字符串求出每个字母的数量并返回结果对象。(数字为1时可省略 #106

Open
Sunny-117 opened this issue Nov 3, 2022 · 4 comments

Comments

@Sunny-117
Copy link
Owner

No description provided.

@veneno-o
Copy link
Contributor

function main(str){
    const len = str.length;
    const map = new Map();
    const res = {};
    for(let i = 0; i < len; ++i){
        map.has(str.charAt(i)) ? map.set(str.charAt(i), map.get(str.charAt(i)) + 1) : map.set(str.charAt(i), 1);
    }
    for (const key of map.keys()) {
        res[key] = map.get(key);
    }
    return res;
}

@fencer-yd
Copy link

fencer-yd commented Jun 1, 2023

const low = new Array(26).fill(10).map((item, index) => (item + index).toString(36));
const ups = low.map(item => item.toLocaleUpperCase());
const words = [...low, ...ups];

function getWordCount(str) {
  const res = {};
  words.forEach(item => res[item] = 0);
  words.forEach(item => { res[item] = str.length - str.replaceAll(new RegExp(item, 'g'), '').length });
  return res;
}
const a = 'sjhdgsjjdgsjhvdsjhdhsafyqwpqyjdjhdgjshgds';
console.log(getWordCount(a));

@kangkang123269
Copy link

function countLetters(str) {
    var result = {};
    for (var i = 0; i < str.length; i++) {
        var letter = str[i];
        if (!result[letter]) { 
            result[letter] = 1;
        } else {
            result[letter]++;
        }
    }
    
    // 遍历结果对象,将值为1的属性删除
    for(var key in result){
      if(result[key] === 1){
         delete result[key];
      }
    }

    return result;
}

console.log(countLetters("hello world")); // { l: 3, o: 2 }

@yekezz
Copy link

yekezz commented Mar 7, 2024

const str = 'syuidfhasdffghjkgutweryerfgdcgertsdfghasdfad'

function getCharNum(str) {
  const tempList = str.split('')
  const map = tempList.reduce((p,c) => {
    if(p[c]) {
      p[c] += 1
    } else {
      p[c] = 1
    }
    return p
  }, {})
  Object.keys(map).forEach(key => {
    if(map[key] === 1) {
      delete map[key]
    }
  })
  return map
}

getCharNum(str)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants