Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

188
Views
String without repeated characters

I have r = to how many times can letter be repeated in a row and s = to string to check.
For example if s = "aaabbbccc777" and r = 2. result = "aabbcc77".
I need it to be dynamic and as easy and clean as possible.

Thanks for the help in advance.

let s = "bbbaaaccc777cdggg";
let r = 2;

const verification = (s, r) => {
    
}
verification(s, r);
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You can iterate over the string like this:

const verification = (s, r) => {
    let res = '', last = null, counter = 0;
    s.split('').forEach(char => {
        if (char == last)
            counter++;
        else {
            counter = 0;
            last = char;
        }
        if (counter < r)
            res += char;
    });    
    return res;
}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!