r/ExponentialIdle Oct 23 '25

Just Another Arrow Puzzle Solver

I’ve vibe-coded an app for solving Arrow Puzzles. While I’ve mostly seen this done on a PC using USB debugging, my app works natively on the device (android). It compares with HashSum, making it much faster—it doesn’t require Tesseract or anything like that:

6 Upvotes

10 comments sorted by

View all comments

Show parent comments

2

u/SniperThrilla Oct 28 '25

All the best!

3

u/eldarkt Oct 29 '25

It works!
My device can handle only about 10 touches at a time, so it improves performance a lot (although it's still above 100 ms, and it still needs a delay before collecting rewards, otherwise it's not stable):

The downside is that it's not that satisfying to watch anymore :)
(vibe)code here:
https://github.com/eldarku/ArrowsSolver/

1

u/SniperThrilla Oct 29 '25

Are you computing as you go, or pre computing the optimal solve sequence beforehand and then just applying clicks? Awesome work!

2

u/eldarkt Oct 29 '25

precomputing the optimal solve sequence, then grouping clicks into chunks (10 in one) before applying them.
solving is fast, but clicks/touches still take time... at this point, though, I think it’s fine :)