이게 왜 2레벨에 있는지 잘 모르겠다. 카카오문제 1레벨에 있는거.... 에휴
function solution(s) { let b = [] s.split(" ").forEach(ele=>{ b.push(Number(ele))}) let c = "" c = Math.min(...b)+" "+Math.max(...b) return c }