JS 복습 키워드 각 자리수의 합(2)

주재일·2021년 6월 20일
0

JS

목록 보기
1/33

배열안의 각 자리수의 합의 중 가장 큰 숫자

function solution(n, arr) {
  let answer
  let max = 0;

  for(let i of arr){
    let sum=0
    let temp=i
    while(temp){
      sum+=(temp%10)
      temp=Math.floor(temp/10)
    }
    if(sum>max){
      max=sum;
      answer = i
    }else if(sum===max){
      if(answer<i){
        answer = i
      }
    }
  }
  return answer;
}
let arr = [128, 460, 603, 40, 521, 137, 123];
console.log(solution(7, arr));

키워드

  for(let i of arr){
    let sum=0
    let temp=i
    while(temp){
      sum+=(temp%10)
      temp=Math.floor(temp/10)
    }
profile
늦게 시작했으니 저는 늦둥이인가요?

0개의 댓글

관련 채용 정보