Skip to content

Instantly share code, notes, and snippets.

@lordpretzel
Created April 7, 2019 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lordpretzel/dbb06da54a413514f62a6e834f2b179f to your computer and use it in GitHub Desktop.
Save lordpretzel/dbb06da54a413514f62a6e834f2b179f to your computer and use it in GitHub Desktop.
public static void main (String[] args) {
List<String[]> l = List.of(
new String[] { "Chicago", "Madison" },
new String[] { "Chicago", "Indianapolis" }
);
RoadNetwork n = new RoadNetwork (l);
System.out.println(n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment