Write a business memo
July 14, 2020
Definition Of An Emotion
July 14, 2020
Show all

graph representation of this code

Please write out a graph that represents the code below. This code creates a graph using Dictionary (denoted by { }).

graph = { “a” : [“c”],

          “b” : [“c”, “e”],

          “c” : [“a”, “b”, “d”, “e”],

          “d” : [“c”],

          “e” : [“c”, “b”],

          “f” : []

        }

**Note: Do not send this in a program!  I want to see a graph representation of this code only

Leave a Reply

Your email address will not be published. Required fields are marked *