Skip to content

Commit fb37f10

Browse files
github-actionsgithub-actions
authored andcommitted
fixup! Format Python code with psf/black push
1 parent b64027b commit fb37f10

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graphs/breadth_first_search_shortest_path.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
"""Breath First Search (BFS) can be used when finding the shortest path
22
from a given source node to a target node in an unweighted graph.
33
"""
4+
5+
46
class Graph:
57
def __init__(self, graph, source_vertex):
68
"""Graph is implemented as dictionary of adjancency lists. Also,

0 commit comments

Comments
 (0)