▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/build-array-from-permutation/ Build Array from Permutation - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com *Permutation: 순열 (: 고정된 개수를 가진 수들을 일정 규칙에 따라 순서대로 나열한 수열) 수열 nums 가 input으로 주어진다. 인덱스 값을 다시 인덱스로 사용해서 만든 새로운 순열을 반환하는 문제. #최초 ..