[leetcode, JS] 989. Add to Array-Form of Integer

mxxn·2023년 8월 31일
0

leetcode

목록 보기
60/198

문제

문제 링크 : Add to Array-Form of Integer

풀이

/**
 * @param {number[]} num
 * @param {number} k
 * @return {number[]}
 */
var addToArrayForm = function(num, k) {
    const bigIntNum = BigInt(num.join(''))
    const bigIntK = BigInt(k)
    return String((bigIntNum+bigIntK)).split('')
};
  1. num이 javascript에서 지원하는 number의 범위보다 클 수 있으니 BigInt형으로
  2. 더한 값을 String으로 바꾸고 split
  • Runtime 82 ms, Memory 48 MB
profile
내일도 글쓰기

0개의 댓글