From fd2cc58ff2184887178e581fb979405e47d0ab81 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Tue, 30 Mar 2021 09:57:58 +0400 Subject: =?UTF-8?q?=D0=9D=D0=B5=D0=BC=D0=BD=D0=BE=D0=B3=D0=BE=20=D0=BF?= =?UTF-8?q?=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8=D0=BB=204=20=D0=B7=D0=B0?= =?UTF-8?q?=D0=B4=D0=B0=D1=87=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- graphs/task4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphs/task4.cpp b/graphs/task4.cpp index ff011cc..80737f0 100644 --- a/graphs/task4.cpp +++ b/graphs/task4.cpp @@ -40,7 +40,7 @@ void dfs(int x, graph g, vector *path) { int n = int(g.size()); vector used(n); - return dfs(x, g, path, &used); + dfs(x, g, path, &used); } -- cgit v1.2.3