개미군단

임성은·2023년 6월 3일
0

💫 나의 풀이

function solution(hp) {
    let gen = 0;
    let sol = 0;
    let ant = 0;
    
    gen = Math.floor(hp/5) 
    sol = Math.floor(hp%5/3) 
    ant = Math.floor((hp%5%3)/1)

    return gen+sol+ant;
}

그렇다 뭘 구하고 싶은건지 코드야 보면 딱 알겠거니 하지만..

간결하게 해결하고 싶었었다.

챗GPT의 풀이를 보자.

🛸GPT 풀이 ( 내 코드를 먼저 보여주고 간결하게 코드를 짜면 어떻게 짤것인지 물어보았다)

function solution(hp) {
  const gen = Math.floor(hp / 5);
  const sol = Math.floor((hp % 5) / 3);
  const ant = hp % 5 % 3;

  return gen + sol + ant;
}
profile
개발자의 길에 당차게 들어서다!!

0개의 댓글