0_0_39620550_28674.cpp: In function 'Node operator+(const Node&, const Node&)':
0_0_39620550_28674.cpp:147:13: error: declaration of 'int l' shadows a parameter
147 | int l = 1, r = 1;
| ^
0_0_39620550_28674.cpp:146:30: note: 'const Node& l' previously declared here
146 | Node operator + (const Node& l, const Node& r) {
| ~~~~~~~~~~~~^
0_0_39620550_28674.cpp:147:20: error: declaration of 'int r' shadows a parameter
147 | int l = 1, r = 1;
| ^
0_0_39620550_28674.cpp:146:45: note: 'const Node& r' previously declared here
146 | Node operator + (const Node& l, const Node& r) {
| ~~~~~~~~~~~~^
0_0_39620550_28674.cpp:150:33: error: request for member 'maxx' in 'l', which is of non-class type 'int'
150 | if(l <= 10 && l.maxx[l] > r.maxx[r]) {
| ^~~~
0_0_39620550_28674.cpp:150:45: error: request for member 'maxx' in 'r', which is of non-class type 'int'
150 | if(l <= 10 && l.maxx[l] > r.maxx[r]) {
| ^~~~
0_0_39620550_28674.cpp:151:36: error: request for member 'maxx' in 'l', which is of non-class type 'int'
151 | res[i] = l.maxx[l];
| ^~~~
0_0_39620550_28674.cpp:154:36: error: request for member 'maxx' in 'r', which is of non-class type 'int'
154 | res[i] = r.maxx[r];
| ^~~~
|