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;
}