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:24:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
24 | for(int i = 0; i < n; i++)
| ^~~
railroad.cpp:26:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
26 | sort(z.begin(), z.end());
| ^~~~