๐งต 100 Square Puzzle
Anonymous at Fri, 15 Mar 2024 05:04:12 UTC No. 16078633
I have spent my entire day off trying to code a brute force for this puzzle to no avail. Maybe one of you is smart enough to figure this out with actual logic.
Anonymous at Fri, 15 Mar 2024 05:08:05 UTC No. 16078638
no science or math
Anonymous at Fri, 15 Mar 2024 05:14:28 UTC No. 16078645
>>16078638
This is definitely math.
Anonymous at Fri, 15 Mar 2024 05:19:03 UTC No. 16078652
trying to code solutions to math problems instead of analyzing the math often leads to wasted time and no results
Anonymous at Fri, 15 Mar 2024 05:22:38 UTC No. 16078656
>>16078638
What board would you recommend then?
>>16078652
I understand now, as the weight of my failure drags me into another long night.
Anonymous at Fri, 15 Mar 2024 05:23:43 UTC No. 16078659
>>16078633
already solved
knights problem
Anonymous at Fri, 15 Mar 2024 05:29:43 UTC No. 16078667
>>16078659
That's not a knight.
Anonymous at Fri, 15 Mar 2024 05:31:40 UTC No. 16078673
>>16078659
The movement is different, so, unfortunately, it will not solve this problem. Thank you for trying though.
Anonymous at Fri, 15 Mar 2024 07:22:12 UTC No. 16078776
If you focus on creating sets of diagonals it's not that difficult. Complete a 3 move grid, then move on a diagonal once, then create a 3 move grid, then move diagonally again along the previous diagonal axis, then the last 3 move grid to have a set of diagonal lines, rinse, repeat, rinse, repeat.
Anonymous at Fri, 15 Mar 2024 09:25:57 UTC No. 16078844
>>16078633
Don't know the actual solution, but this sounds like trying to find if a Hamiltonian path exists.
Anonymous at Fri, 15 Mar 2024 10:32:47 UTC No. 16078898
>>16078633
It's a Hamiltonian path problem. Those things are NP complete.
Anonymous at Fri, 15 Mar 2024 14:48:27 UTC No. 16079208
>>16078776
That seems to work, thank you.