Aprende Diseño de Algoritmo Construyendo un Algoritmo de la Ruta más Corta - Step 19

Cuéntanos qué está pasando:

I don’t understand the slogan, what do I have to modify?
Modify your dictionary to represent this structure. Again, use a list to represent multiple connections.

Tu código hasta el momento


# User Editable Region

my_graph = {
    'A': 'B',
    'B': ['A', 'C'],
    'C': 'B',
    'D': ['A', 'C'],
}

# User Editable Region

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36

Información del Desafío:

Aprende Diseño de Algoritmo Construyendo un Algoritmo de la Ruta más Corta - Step 19

Hi @JuanciDev

  1. my_graph['A'] should be a list.

You need to modify the 'A' node.

Happy coding