From add43f15dcac630a34444f6c625725b890fef317 Mon Sep 17 00:00:00 2001 From: Dyrroth19865 <56477602+Dyrroth19865@users.noreply.github.com> Date: Thu, 22 Oct 2020 09:16:49 +0530 Subject: [PATCH] Update reachability.cpp --- .../1_reachability/reachability.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Course 3 - Algorithms on Graphs/week1_decomposition1/1_reachability/reachability.cpp b/Course 3 - Algorithms on Graphs/week1_decomposition1/1_reachability/reachability.cpp index 21734d3..6bf545d 100644 --- a/Course 3 - Algorithms on Graphs/week1_decomposition1/1_reachability/reachability.cpp +++ b/Course 3 - Algorithms on Graphs/week1_decomposition1/1_reachability/reachability.cpp @@ -1,14 +1,5 @@ #include #include - -/* -* Author: Ayran Olckers -* Website https://ayran.dev -* Respect Coursera Honor Code -* Copyright © 2019. All rights reserved -* -*/ - using std::vector; using std::pair; @@ -49,4 +40,4 @@ int main() { int x, y; std::cin >> x >> y; std::cout << reach(adj, x - 1, y - 1); -} \ No newline at end of file +}