Showing unique characters in a string only once

后端 未结 13 2378
-上瘾入骨i
-上瘾入骨i 2020-12-31 20:38

I have a string with repeated letters. I want letters that are repeated more than once to show only once. For instance I have a string aaabbbccc i want the result to be abc.

13条回答
  •  心在旅途
    2020-12-31 20:50

    Here is the simplest function to do that pt. 2

    const showUniqChars = (text) => {
      let uniqChars = "";
    
      for (const char of text) {
        if (!uniqChars.includes(char))
          uniqChars += char;
      }
      return uniqChars;
    };
    

提交回复
热议问题