Post

두 수의 합

https://school.programmers.co.kr/learn/courses/30/lessons/181846

📔 문제 설명

0 이상의 두 정수가 문자열 a, b로 주어질 때, a + b의 값을 문자열로 return 하는 solution 함수를 작성해 주세요.

💡 입출력 예

abresult
“582”“734”“1316”
“18446744073709551615”“287346502836570928366”“305793246910280479981”
“0”“0”“0”

💻내가 작성한 코드

1
2
3
function solution(a, b) {
  return String(BigInt(a) + BigInt(b));
}
This post is licensed under CC BY 4.0 by the author.