Problem coinbag
User ashgreninja1006
Submission Time 2026-03-14 20:24:51
Score 0
Max Time N/A
Max Memory N/A

Compile Error

coinbag.cpp: In function ‘int main()’:
coinbag.cpp:27:48: error: expected ‘)’ before ‘;’ token
27 | dp[i][j] = max(dp[i-1][j], dp[i][j-1];
| ~ ^
| )