questions/00296-medium-permutation/README.ko.md
주어진 유니언 타입을 순열 배열로 바꾸는 Permutation 타입을 구현하세요.
type perm = Permutation<'A' | 'B' | 'C'>; // ['A', 'B', 'C'] | ['A', 'C', 'B'] | ['B', 'A', 'C'] | ['B', 'C', 'A'] | ['C', 'A', 'B'] | ['C', 'B', 'A']
<a href="../../README.ko.md" target="_blank"></a> <a href="https://tsch.js.org/296/answer/ko" target="_blank"></a> <a href="https://tsch.js.org/296/solutions" target="_blank"></a> <!--info-footer-end-->