Sudoku Solver app

I have developed a sudoku solver in C programming. I was wondering whether it’s possible to develop the same in Corona having an user interface? Where in the user gives the input(touch) and presses solve to get the solution. I can give you the code but it’s in C language.

I’m sure you can convert your C algorithm to Lua, so the answer is almost assuredly, “Yes, it can be done.”

Be aware, that most sudoku solvers are very compute intensive and that it may run slowly on some devices.  This all depends on how efficient your solver algorithm is.

My algorithm is very fast indeed. I had even included a clock function to check how much time a world’s toughest Sudoku would take. It solves everything under 0.2 seconds.

I’m sure you can convert your C algorithm to Lua, so the answer is almost assuredly, “Yes, it can be done.”

Be aware, that most sudoku solvers are very compute intensive and that it may run slowly on some devices.  This all depends on how efficient your solver algorithm is.

My algorithm is very fast indeed. I had even included a clock function to check how much time a world’s toughest Sudoku would take. It solves everything under 0.2 seconds.