From the course: Code Clinic: Go

Unlock this course with a free trial

Join today to access over 22,400 courses taught by industry experts.

Solution overview

Solution overview - Go Tutorial

From the course: Code Clinic: Go

Solution overview

- So the first thing I want to do is I want to give you the high level overview of my solution and what we're looking at here is in the 03_eight-queens folder. There's 08_solution. So the first thing I want to do is I just want to show you this thing run and come over there to folder 08 in my Terminal and hit go run main.go. Run this file, and there it is. 92 possible answers. And as I scroll up through this, it shows me all of the possible different iterations where I could have queens. So, I think that's pretty cool. I like the way it all prints out and we can visually see that on the chessboard. Pretty darn amazing. The next thing I want to do is just provide you with a little bit more detail on depth to my solution, but still kind of keep it in the overview level. So, I don't want to jump in and start looking at all these hieroglyphics because this code gets kind of complicated kind of quickly. But obviously, you've got the files, you could jump in and you can start looking…

Contents