Back to all posts
콜라주 추측
Written by ppotatoG & Posted on November 13th, 2021
처음 제출한 답
중복문 내 i
가 500 이상이면 멈춤
조건으로 num === 1
이면 break
반환할 때 count
가 500이면 -1 반화
function solution(num) {let count = 0;for(let i = 0; i < 500; i++){if(num === 1) break;num % 2 == 0 ? num = num / 2 : num = num * 3 + 1;count ++;}return count === 500 ? -1 : count;}
최근 제출한 답
처음 제출한 내용을 for문이 아닌 while로 사용 가능하다
function solution12943(n) {let count = 0;while(n !== 1 && count < 500){n % 2 == 0 ? n = n / 2 : n = n * 3 + 1 ;count ++;}return n === 1 ? count : -1;}