<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">I am just about done with the book, only a few more exercises.<br><br>The method I went at for this problem was to just set the initial position to false and then recur on the interval.<br><br>My thinking is, to make all the spots the queen threatens on a horizontal, you would leave the y and adjust the x.<br><br>for putting it at 4, 4, you'd want to set 3, 4.&nbsp; 2, 4 .&nbsp; 1,4.&nbsp; 0,4&nbsp; 5,4&nbsp; 6,4&nbsp; 7,4 ....(board-length), 4.<br><br>The verticals are similar, switching the y each time.<br><br>I am having trouble with the diagonals. For me it just continually runs until I kill it or my computer freezes up.<br><br>My thought is that it should set the initial posn to false, and then recur 4 times, once for each diagonal direction.<br><br>so, for 4, 4 it should do, 3,3&nbsp;&nbsp; 5,5&nbsp; 3,5&nbsp;&nbsp; 5, 3.&nbsp; continually adding numbers
 until it reaches 0 or vector-length.<br><br>I just want to know if I am thinking about this correctly. I feel like it should work perfect but generally when it does something to slow down my computer this much I have something thought out wrong.<br></td></tr></table><br>