Code to find separating set in SageMath of a given Graph
Given a Graph G how can I find the separating set of the Graph?
Suppose I am given this graph
G = Graph({1: [2, 3, 4, 5],
2: [1, 3, 4, 5],
3: [1, 2, 4, 5],
4: [1, 2, 3],
5: [1, 2, 3]})
I want to find the set of vertices whose removal disconnects the graph.
I found that the vertex connectivity of G is 2.
Looking at the graph, the smallest set of vertices whose removal disconnects the graph is (1,2,3).
But how to find it using a code in SageMath?