Question: please complete this method in C Use only pointer arithmetic notation. There should be no [ ] used. This method checks if a sudoku board

please complete this method in C

Use only pointer arithmetic notation. There should be no [ ] used.

This method checks if a sudoku board is valid or not, given a heap allocated 2d array of integers and the size of the board.

The size can be from 1-9. There should be no duplicate values.

int rowcolcheck(int **board, int size){ //board is a heap allocated 2d array of integers, size is the number of rows and columns

//pointer arithmetic code without brackets [ ]

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!