binaryGap 코드리뷰
Closed this issue · 3 comments
eyabc commented
binaryGap 코드리뷰
eyabc commented
@khw970421
var와 const let 설명
var 보다는 const와 let 을 이용해보세요! https://velog.io/@bathingape/JavaScript-var-let-const-%EC%B0%A8%EC%9D%B4%EC%A0%90
eyabc commented
@jeongshin @khw970421
10진수를 2진수로 바꿀때 toString(바꿀진수값) 을 쓸수 있어요
N.toString(2)
eyabc commented
for 문 안의 a.length 가 들어가면 for문을 한번 실행할떄마다 a의 배열 길이를 매번 계산하게 됩니다.'
const a_length = a.length;
for(var j = 0; j < a_length; j++)
으로 수정합니다