Skip to content

Instantly share code, notes, and snippets.

@Arrlindii
Created October 29, 2020 12:51
Show Gist options
  • Save Arrlindii/25a13c9f3bf5f0bdbf42e08ee723732b to your computer and use it in GitHub Desktop.
Save Arrlindii/25a13c9f3bf5f0bdbf42e08ee723732b to your computer and use it in GitHub Desktop.
func bfs(start: String, target: String) {
var queue = [start];
while let node = queue.popLast() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment