[알고리즘문제풀기] 두 수의 연산값 비교하기

silver's avatar
Jun 03, 2025
[알고리즘문제풀기] 두 수의 연산값 비교하기

문제

내가 작성한 정답

class Solution { public int solution(int a, int b) { return Math.max(Integer.parseInt(""+a+b),2*a*b); } }
Share article

silver