오늘 알고리즘 문제를 풀고 오늘의 알고리즘, CS 스터디를 마쳤다 오늘의 CS 스터디
function solution(n) {
let answer = n;
let notThree = [];
let notThree2 = [];
for (let i = 1; i <= n * 2; i++) {
if (i % 3 !== 0) {
notThree.push(i);
}
}
console.log(notThree)
for ( let i = 0; i <notThree.length; i++){
if(!String(notThree[i]).includes('3')){
notThree2.push(notThree[i]);
}
}
console.log("123",notThree2)
answer = notThree2[n - 1];
return answer;
}
접근을 꽤나 애 먹었고...
스터디가 끝나자 마자 폭풍 기획...