| Problem | candymountain_ex |
|---|---|
| User | aidanvoidout |
| Submission Time | 2025-02-15 20:15:51 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
candymountain_ex.cpp: In function ‘int main()’:
candymountain_ex.cpp:20:43: error: expected ‘;’ before ‘}’ token
20 | if (min_candy == -1) {min_candy = dp[y]};
| ^
| ;
candymountain_ex.cpp:21:4: error: ‘else’ without a previous ‘if’
21 | else { min_candy = min(min_candy, dp[y]};
| ^~~~
candymountain_ex.cpp:21:43: error: expected ‘)’ before ‘}’ token
21 | else { min_candy = min(min_candy, dp[y]};
| ~ ^
| )