function solution(num_list) {
const answer = [];
while(num_list.length){
answer.push(num_list.pop())
}
return answer;
}
'알고리즘, 자료구조' 카테고리의 다른 글
[leetcode] 20. Valid Parentheses (0) | 2022.10.24 |
---|---|
[프로그래머스] 분수의 덧셈 (0) | 2022.10.19 |
[js] 최대 공약수, 최소공배수 구하기 (feat. 유클리드 호제법) (0) | 2022.10.19 |
순열 (0) | 2022.09.17 |
[프로그래머스] 성격 유형 검사하기 (0) | 2022.08.19 |