-
[완전탐색]알고리즘 with Node.jsProgramming/Algorithm 2022. 2. 10. 14:13
const a = [0]; function solution(numbers) { // let answer = ''; numbers.sort().reverse(); answer = combin(numbers, ''); return answer; }; function combin(data, str) { // let num = new Array; if (data.length) { // for (let i in data) { // num = [...data]; num.splice(i, 1); combin(num, str + data[i]); }; }; if (str > a[0]) a.splice(0, 1, str); return a[0]; };
'Programming > Algorithm' 카테고리의 다른 글
[백준]9020번 골드바흐의 추측 with Node.js (1) 2022.04.14 [백준]1065번 한수 with Node.js (0) 2022.04.07 [백준]2884번 알람시계 with Node.js (0) 2022.03.31 [백준]1003번 피보나치 함수 with Node.js (0) 2022.03.19 [정렬] 가장 큰 수 with Node.js (0) 2022.02.10