I want to make a sudoku using c#. Should I use a jagged or multi-dimensional array. And why?
I know that jagged arrays are faster and more efficient for simple array logic, such as sudoku. But maybe there are other arguments?
Thanks in advance.
Edit: I need to perform some solving methods on the sudoku. Like the backtracker algorithm. I found that multi-dimensional arrays have a better syntax.
I guess my question is: which is simplest to use, implement and modify?