알고리즘, 자료구조

스택이용해 배열 거꾸로 출력하기

Developer Mobssie 2022. 10. 24. 19:13
function solution(num_list) {
    const answer = [];
    while(num_list.length){
       answer.push(num_list.pop())     
    }
    return answer;
}