railroad.cpp: In function 'long long int plan_roller_coaster(std::vector<int>, std::vector<int>)':
railroad.cpp:16:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
16 | for(int i = 0; i < n; i++)
| ^~~
railroad.cpp:18:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
18 | sort(z.begin(), z.end());
| ^~~~
railroad.cpp:25:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
25 | for(int i = 0; i < n; i++)
| ^~~
railroad.cpp:27:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
27 | sort(z.begin(), z.end());
| ^~~~
railroad.cpp:34:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
34 | for(int i = 0; i < n; i++)
| ^~~
railroad.cpp:36:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
36 | sort(z.begin(), z.end());
| ^~~~