C# 모음사전 - DFS 중복순열 / 프로그래머스 [Lv.2]
출처: 프로그래머스 코딩 테스트 연습 https://school.programmers.co.kr/learn/courses/30/lessons/84512 중복 순열 문제. 1. A, E, I, O, U로 만들 수 있는 모든 문자열 2. 길이는 1~5 3. 문자 중복가능 의 조건이라서 중복 순열로 모든 문자열 만들고 정렬하면 된다. 내 코드 using System; using System.Linq; using System.Collections.Generic; public class Solution { public int solution(string word) { var list = new List(); var arr = new char[5]{'A', 'E', 'I', 'O', 'U'}; for(int i =..