컴퓨터공학 기초/문제 풀이
컴퓨터공학 기초/문제 풀이
10069 - Distinct Subsequences
#include using namespace std;int** dTable;int subseq(string str1, string str2);int main(void){ int testCase; cin >> testCase; while (testCase--) { string str1, str2; cin >> str1 >> str2; int ans = subseq(str1, str2); cout