Problem lcs
User Alloy
Submission Time 2023-01-03 14:38:05
Score 0
Max Time N/A
Max Memory N/A

Compile Error

lcs.cpp: In function ‘int main()’:
lcs.cpp:20:57: error: ‘max’ cannot be used as a function
20 | arr[i][j] = max(arr[i-1][j], arr[i][j-1]);
| ^