Update the sample graph in the base file

This commit is contained in:
2026-08-20 18:57:44 -04:00
parent f45e6f98a5
commit 1d412caaad

View File

@@ -1,11 +1,19 @@
# see the overview from 2026.07.31
# See the overview from 2026.07.31.
# Note: I added Anaheim to the sample graph here. The solution should work
# appropriately with either graph.
sample_graph = {
'Santa Ana': {
'Los Angeles': 5,
'Anaheim': 3,
'Palm Springs': 50
},
'Anaheim': {
'Los Angeles': 2,
'Santa Ana': 3
},
'Los Angeles': {
'Anaheim': 2,
'San Francisco': 25,
'Santa Ana': 5
},
@@ -16,7 +24,7 @@ sample_graph = {
'San Francisco': {
'Los Angeles': 25,
'Palm Springs': 30
}
}
}
def possible_paths(start: str, end: str):