티스토리 뷰

Algorithms

How many typos in a string

seoca 2021. 2. 12. 14:46

 

연속된 SOS String에 몇개의 typo가 있는지 알아내는 문제

 

 

let s = "SOFSOSSISSOW";

function checkTypo(s) {
    let sosCount = s.length/3; //몇개의 덩어리인지 check.
    let sosStr = "SOS".repeat(sosCount); //그 덩어리만 제대로된 SOSSOSSOS print
    let err = 0;

    //string 도 for loop.
    for(let i = 0; i < s.length; i++){
        if(s[i] !== sosStr[i]){
            err++;
        }
    }

    console.log(err);
}

checkTypo(s); //3

'Algorithms' 카테고리의 다른 글

two sum  (0) 2021.03.26
on sale products algorithm  (0) 2021.02.12
CamelCase  (0) 2021.02.12
smallest distance  (0) 2021.01.16
Cut the sticks  (0) 2020.12.18