Im trying to make a suduko puzzle solver and my current input takes to long. I want the user to be able to enter the input. I use int Board[9][9] to represent the board. 0,0 is the bottom left. I currently ask for each number and its oordinates. Does anyone have a better idea for input?
by calling the function getkey() and then collecting scan value of the arrow keys of pressed key.respective scan values of the keys are
up-arrow=72; down-arrow=80;left-arrow=75;right-arrow=77;
then we use an infinite while loop as follows