Adjacency List Generation from Edge Connections
Given a list of undirected edge connections of size E, create an adjacency list for a graph with V nodes and E edges following 0-based indexing and return the adjacency list. Examples: Input: V = 4, E = 5, edges = [[0, 1], [1, 2], [2, 3], [0, 2], [1, 3]]Output: [[1, 2], [0, 2, 3], [1, 3, 0], [2, 1]]Explanation: Node 0 is connected to 1 2 Node numbe