Skip to content

Instantly share code, notes, and snippets.

@Wheatwizard
Last active May 18, 2017 16:26
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 Wheatwizard/5cbaf2b496f40d7be4aade412f25153a to your computer and use it in GitHub Desktop.
Save Wheatwizard/5cbaf2b496f40d7be4aade412f25153a to your computer and use it in GitHub Desktop.
1.
V = {1,2,3}
E = {(1,2),(2,3),(3,1)}
True
2.
V = {1,2}
E = {(1,2)}
True
3.
V = {1,2,3}
E = {(1,2)}
False
4.
V = {1,2,3,4}
E = {(1,2),(2,3),(3,1),(3,4),(2,4)}
False
5.
V = {1,2,3,4,5}
E = {(1,2),(2,3),(3,1),(3,4),(4,5),(5,3)}
True
6.
V = {1,2,3,4,5,6}
E = {(1,2),(2,3),(3,1),(3,4),(4,5),(5,6),(6,4)}
True
7.
V = {1,2,3,4,5,6}
E = {(1,2),(2,3),(3,1),(3,4),(4,5),(5,6),(6,3)}
True
8.
V = {1,2,3,4}
E = {(1,2),(3,4)}
False
9.
V = {1,2,3,4,5,6,7,8,9,10,11,12,13}
E = {(1,2),(1,3),(3,4),(2,4),(3,5),(5,6),(6,7),(7,8),(8,5),(7,9),(9,10),(10,11),(11,7),(8,12),(8,13)}
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment