// ๊ตฌ์กฐ๋ถํดํ ๋น function solution(dot) { const [num,num2] = dot; const check = num * num2 > 0; return num > 0 ? (check ? 1 : 4) : (check ? 3 : 2); } function solution(num_list) { const [a, b] = [...num_list].reverse(); return [...num_list, a > b ? (a-b):a*2]; } //const [a, b]๋ [...num_list] ์ ์์ ์ค ์์๋๋ก a์ b์ ํ ๋นํ๋๊ตฌ๋ // ์ฝ๋ฐฑํจ์๋ฅผ ์์ฑํ ๋ {()=>{return A}} or (() => a) // {}๋ฅผ ์ฐ๋ฉด ๋ฐ๋์ return ์ ์จ์ค์ผ ํ๊ณ , ๋ง์ฝ {}๋ฅผ ์ฐ์ง์์ผ๋ฉด..