Skip to content

Commit e3d6043

Browse files
committed
Mudando a docstring
1 parent 4e55b0a commit e3d6043

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python/busca_em_grafo.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __adiciona_aresta(self, u: int, v: int) -> None:
4141
self.adj[v].append(u)
4242

4343
def bfs(self, start: int) -> list:
44-
"""Executa a busca em largura a partir do vértice u
44+
"""Executa a busca em largura a partir do vértice start
4545
4646
Args:
4747
start (int): vértice start
@@ -65,7 +65,7 @@ def bfs(self, start: int) -> list:
6565
return visitados
6666

6767
def dfs(self, start: int) -> list:
68-
"""Executa a busca em profundidade a partir do vértice u
68+
"""Executa a busca em profundidade a partir do vértice start
6969
7070
Args:
7171
start (int): vértice start

0 commit comments

Comments
 (0)