[TIL]2023.08.17 기..획... 그리고 CS, 알고리즘 스터디!

Nick·2023년 8월 17일
0

TIL: 오늘을 돌아보자

목록 보기
68/95
post-thumbnail
post-custom-banner

오늘 알고리즘 문제를 풀고 오늘의 알고리즘, 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;
}

접근을 꽤나 애 먹었고...

스터디가 끝나자 마자 폭풍 기획...

  • 와이어 프레임 수정 변경
  • 기술 스택 선정
  • Supabase생성
    • ERD , 스키마
  • 해민 디자이너님과 또 기획...
  • 디자인 래퍼런스, 선정...
  • 깃 생성...
    와... 더 많지만 여기서 나는... 쓰러짐...
profile
배우고 도전하는것을 멈추지 않는 개발자 입니다.
post-custom-banner

0개의 댓글