Problem | coinbag |
---|---|
User | Bulbasheen |
Submission Time | 2024-02-07 22:45:35 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
coinbag.cpp: In function ‘int32_t main()’:
coinbag.cpp:24:61: error: expected ‘;’ before ‘}’ token
24 | dp[i][j] = max(dp[i-1][j-w], dp[i-1][j])
| ^
| ;
25 | }
| ~