| Problem | mountains |
|---|---|
| User | HighLithop |
| Submission Time | 2025-10-24 10:29:15 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
mountains.cpp:3:9: error: ‘node’ does not name a type
3 | node * l, * r;
| ^~~~
mountains.cpp:4:26: error: ISO C++ forbids declaration of ‘node’ with no type [-fpermissive]
4 | node(int S, int E) {
| ^
mountains.cpp: In function ‘int node(int, int)’:
mountains.cpp:8:17: error: ‘l’ was not declared in this scope
8 | l = new node(s, m);
| ^
mountains.cpp:8:25: error: expected type-specifier before ‘node’
8 | l = new node(s, m);
| ^~~~
mountains.cpp:9:17: error: ‘r’ was not declared in this scope
9 | r = new node(m + 1, e);
| ^
mountains.cpp:9:25: error: expected type-specifier before ‘node’
9 | r = new node(m + 1, e);
| ^~~~
mountains.cpp: In function ‘void update(int, int)’:
moun