프로그래머스 모음사전 C++ dfs
#include #include #include using namespace std; char alpha[5] = {'A', 'E', 'I', 'O', 'U'}; int answer, cnt; void dfs(string s, string word){ if (s==word){ answer=cnt; return; } if (s.length()>=5){ return; } for (int i=0;i
2023.09.17