Algorithm

· Algorithm
// 구조분해할당 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 을 써줘야 하고, 만약 {}를 쓰지않으면..
becky(지은)
'Algorithm' 카테고리의 글 목록