-
[Algorithm] 순열 (Permutation)programing/Algorithm 2020. 1. 3. 12:42
안녕하세요, Einere입니다.
(광고 차단 기능을 꺼주시면 감사하겠습니다.)
순열
function permutation(arr) { return arr.reduce( function(list, element) { const newList = []; list.forEach(function(seq) { for (let i = seq.length; i >= 0; i--) { const newSeq = [].concat(seq); newSeq.splice(i, 0, element); newList.push(newSeq); } }); return newList; }, [[]] ); }
'programing > Algorithm' 카테고리의 다른 글
[Programmers] 크레인 인형뽑기 게임 (0) 2020.10.07 [Algorithm] BFS & DFS (0) 2020.05.26 [BJ] 2616 - 소형기관차 (0) 2019.11.30 [BJ] 2869 - 달팽이는 올라가고 싶다 (0) 2019.11.16 [BJ] 2805 - 나무 자르기 (0) 2019.11.09 댓글