Coding a Bubble Pop Puzzle Solver
Budget: $10 – $30 USD
I am looking for an experienced coder to help me code a bubble pop puzzle solver. I would prefer the programming language to be golang or javascript and I am open to the freelancer's suggestion on which algorithm or method to use for the solver. The deadline for completing the project is within two weeks.
The game starts by filling a 12x11 grid with bubbles of 4 varying colors. These bubbles form clickable groups if there are 2 or more next to eachother. The goal is to finish the level with an empty grid (no single bubbles left). Clicking the groups removes them and bubbles above will shift downwards unless they are empty. Empty columns will be filled by the columns on the left shifting to the right. No bubbles are replaced during the levels.
I found a script for a program that uses golang to open up the site, start the game, save a screenshot of the board and analyze the grid and turn it into values and find groups. However I don't know how to write a function that will find a random solution by brute force (since A* might get detected), which it can then execute.
The game starts by filling a 12x11 grid with bubbles of 4 varying colors. These bubbles form clickable groups if there are 2 or more next to eachother. The goal is to finish the level with an empty grid (no single bubbles left). Clicking the groups removes them and bubbles above will shift downwards unless they are empty. Empty columns will be filled by the columns on the left shifting to the right. No bubbles are replaced during the levels.
I found a script for a program that uses golang to open up the site, start the game, save a screenshot of the board and analyze the grid and turn it into values and find groups. However I don't know how to write a function that will find a random solution by brute force (since A* might get detected), which it can then execute.