Talk:Solve a Hidato puzzle: Difference between revisions

no edit summary
No edit summary
Line 78:
 
:: The first simple D version now seems to work correctly.
 
== Short C version ==
I have a problem with this line of the short C version, maybe there's a small bug:
<lang c>while (!isspace(*s)) s++;</lang>
To show it replace that line with:
<lang c>while (!isspace(*s)) { printf("%u\n", s); s++; }</lang>