Talk:Knight's tour: Difference between revisions

(→‎C++ formatting: new section)
Line 47:
:The Perl solution is deterministic, and produces complete tours for all 64 start squares. So it must be something in the ordering of the move list. [[User:Markjreed|Markjreed]] 01:54, 31 May 2011 (UTC)
:Try a 7x7 board. --[[User:Paddy3118|Paddy3118]] 03:24, 31 May 2011 (UTC)
 
== C++ formatting ==
 
I edited the C++ to remove some of the changes made. Several are fairly pointless (such as adding const to all the local variables; the compiler is smart enough to figure that out if it even makes a difference), and most were just reformatting it to someone else's formatting preferences (++i vs i++, etc). If there were a sitewide C++ formatting guide (a possibility suggested on the C++ discussion page, but not currently implemented) I (or whoever) can format it to fit that. [[User:MagiMaster|MagiMaster]] 03:43, 31 May 2011 (UTC)