문제 출처: https://school.programmers.co.kr/learn/courses/30/lessons/92341?language=kotlin
문제
나의 풀이
이 문제는 순열 완전탐색을 이용해서 깊이 우선탐색으로 구현하였다. 알파벳 모음을 만들면서 word에 해당하는 알파벳이 나오면 탐색을 그만하고 count 값을 출력해주는 식으로 구현하였다.
class Solution {
var count = 0
val alphabet = "AEIOU".toList()
val answer = ArrayList<String>()
var find = false
fun permutation(depth: Int, next: String, word: String){
if(depth == 6) return
if(next == word) {
find = true
return
}
for (i in alphabet) {
if(find) return
if(depth + 1 < 6) count++
permutation(depth + 1, next.plus(i), word)
}
}
fun solution(word: String): Int {
permutation(0, "", word)
return count
}
}