| Problem | fibo |
|---|---|
| User | w1gglya3hh |
| Submission Time | 2026-03-26 10:14:46 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
fibo.cpp: In function ‘constexpr uint64_t fibo_out(uint64_t)’:
fibo.cpp:9:9: error: ‘fibo’ was not declared in this scope
9 | return fibo(N - 1) + fibo(N - 2);
| ^~~~
fibo.cpp: In function ‘int main()’:
fibo.cpp:18:16: error: ‘fibo’ was not declared in this scope
18 | std::cout << fibo(i) << '\n';
| ^~~~