function solution(word){
let alphabets=['A', 'E', 'I', 'O', 'U'];
let dictionary=[];
const DFS=(current, length)=>{
if (length>5){
return;
}
dictionary.push(current);
alphabets.forEach(el=>DFS(current+el, length+1))
}
DFS('',0);
return dictionary.indexOf(word)
}
내 코드 설명
dictionary라는 배열에 모든 단어를 만들어주고 찾는 단어의 인덱스값을 indexOf로 찾아 주었다.