Problem commonsubstring
User back2square1
Submission Time 2023-02-14 17:58:36
Score 0
Max Time N/A
Max Memory N/A

Compile Error

commonsubstring.cpp: In function ‘int main()’:
commonsubstring.cpp:34:34: error: expected ‘;’ before ‘}’ token
34 | else lcs[i][j] = lcs[i-1][j-1]
| ^
| ;
35 | }
| ~