Problem | lcs |
---|---|
User | laurenpak |
Submission Time | 2024-02-15 11:44:22 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
lcs.cpp: In function ‘int main()’:
lcs.cpp:15:28: error: expected ‘;’ before ‘cout’
15 | memset(dp, -1, sizeof(dp))
| ^
| ;
16 | cout << lcs(a.length(), b.length()) << endl;
| ~~~~