Skip to content

Instantly share code, notes, and snippets.

@erlnby
Created November 14, 2018 11:22
Show Gist options
  • Save erlnby/03d44b8f2c832ef94dd1232c00d98678 to your computer and use it in GitHub Desktop.
Save erlnby/03d44b8f2c832ef94dd1232c00d98678 to your computer and use it in GitHub Desktop.
override fun compareTo(other: Vertex): Int {
if (this.distance == other.distance) {
return this.index - other.index
} else {
return this.distance - other.distance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment