| 7 | #define endl '\n' |
| 8 | |
| 9 | int main(){ |
| 10 | cin.tie(0)->sync_with_stdio(0); |
| 11 | int n,m; |
| 12 | cin>>n>>m; |
| 13 | int arr[n+1][n+1]; |
| 14 | for (int i = 0; i < m; ++i) |
| 15 | { |
| 16 | /* code */ |
| 17 | int u,v; |
| 18 | arr[u][v]=1; |
| 19 | arr[v][u]=1; |
| 20 | } |
| 21 | |
| 22 | return 0; |
| 23 | } |
nothing calls this directly
no outgoing calls
no test coverage detected