[Algorithm] 중복되지 않은 알파벳 단어 길이 return

유자탱자🍋·2021년 4월 11일
0

Algorithm

목록 보기
4/5

문제

해결

const getLengthOfStr = str => {
	let arr = [];
    let newStr = '';
    
    for (let i in str) {
    	if (newStr.includes(str[i])) {
        	newStr = newStr.slice(newStr.indexOf(str[i]) + 1);	
        }
    	newStr += str[i];
        arr.push(newStr.length);
    }
    return Math.Max(...arr);
}

0개의 댓글