[JAVA 문제 풀이] 196. 두 수의 합

프로그래머스 (181846)
Stupefyee's avatar
Apr 11, 2025
[JAVA 문제 풀이] 196. 두 수의 합
notion image
 

내가 작성한 코드

class Solution { public String solution(String a, String b) { BigInteger aBigInt = new BigInteger(a); BigInteger bBigInt = new BigInteger(b); return aBigInt.add(bBigInt).toString(); } }
 
Share article

stupefyee