...

/

Challenge: Remove an Edge

Challenge: Remove an Edge

In this challenge, we will learn how to delete an edge between two vertices.

Problem statement

You must implement the remove_edge function which takes a source and a destination as arguments. If an edge exists between the two, it should be deleted. Print the breadth-first traversal on the resultant graph. ...