stations.cpp:6:4: error: structured binding declaration cannot have type 'int'
6 | int[] label(int n, int k, int[] u, int[] v)
| ^~
stations.cpp:6:4: note: type must be cv-qualified 'auto' or reference to cv-qualified 'auto'
stations.cpp:6:4: error: empty structured binding declaration
stations.cpp:6:7: error: expected initializer before 'label'
6 | int[] label(int n, int k, int[] u, int[] v)
| ^~~~~
stations.cpp:42:43: error: expected ',' or '...' before 'c'
42 | int find_next_station(int s, int t, int[] c)
| ^
stations.cpp: In function 'int find_next_station(int, int, int*)':
stations.cpp:45:16: error: 'c' was not declared in this scope
45 | return c[0];
| ^
stations.cpp:48:16: error: 'c' was not declared in this scope
48 | return c[1];
| ^