Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
#include <iostream>
#include <vector>

/*
* Author: Ayran Olckers
* Website https://ayran.dev
* Respect Coursera Honor Code
* Copyright © 2019. All rights reserved
*
*/

using std::vector;
using std::pair;

Expand Down Expand Up @@ -49,4 +40,4 @@ int main() {
int x, y;
std::cin >> x >> y;
std::cout << reach(adj, x - 1, y - 1);
}
}