What is the general outline of a backtracking algorithm? — def solve(conf): if (no more choices): return conf choices = get_available_choices for choice in choices: c = pick one if solve(conf using c): return true unmake choice c return false
G
1.2K
Google Interview
This flashcard deck made by jwasham contains knowledge about google interview. For more details, please follow https://github.com/jwasham/google-interview-university