728x90
split μΌλ‘ λλ λ€, Number λ‘ νλ³νν΄μ μ΅λκ°, μ΅μκ°μ ꡬνλλ°,
function solution(s) {
const numArr = s.split(" ").map(Number)
const max = Math.max(...numArr);
const min = Math.min(...numArr);
return `${min} ${max}`
}
μλ μ΄κ² λλ
Math.min, Math.max λ string μ λ£μΌλ©΄ μμμ μ«μλ‘ λ³νμν¨λ€.
function solution(s) {
const arr = s.split(' ');
return Math.min(...arr)+' '+Math.max(...arr);
}
const solution = s => Math.min(...s.split(" "))+ " "+ Math.max(...s.split(" "));
βοΈ μμ²λΌ μμ£Ό κ°λ¨νκ² λνλΌ μ μλ€.
728x90
λ°μν