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 +}