| Problem | fibo |
|---|---|
| User | havinaaaaash |
| Submission Time | 2024-10-13 23:06:08 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo.cpp: In function ‘int fib(int)’:
fibo.cpp:8:35: error: ‘MOD’ was not declared in this scope
8 | return dp[n]=(fib(n-1)+fib(n-2))%MOD;
| ^~~