Last active
August 29, 2015 14:07
-
-
Save joshrosso/0f8d43d4994f51c2f16d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func - PlaceQueen | |
Assume this function ensures location is valid | |
-> PlaceQueen[firstQueen](0,0) | |
-> PlaceQueen | |
-> PlaceQueen | |
-> PlaceQueen - SOLUTION FOUND | |
->PlaceQueen - No Valid Place Found | |
->PlaceQueen - No Valid Place Found | |
-> PlaceQueen[firstQueen](0,1) | |
-> PlaceQueen | |
-> PlaceQueen - No Valid Place Found | |
->PlaceQueen - No Valid Place Found | |
->PlaceQueen[firstQueen] (0,2) | |
->PlaceQueen | |
->PlaceQueen | |
->PlaceQueen - SOLTUION FOUND | |
->PlaceQueen - No Valid Place Found | |
->PlaceQueen - No Valid Place Found | |
->PlaceQueen[firstQueen] (0,3) | |
->PlaceQueen - No Valid Place Found | |
TERMINATE -> firstQueen has reached end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment