Introduction to OOP Chapter 6: The Eight Queens Puzzle: next previous audio real text

Printing Solution

Just recursively ripple down the list of queens, asking each to print itself.

procedure print
	neighbor.print
	write row, column
end

Intro OOP, Chapter 6, Slide 10