photo

Antonia Davis


2016 年からアクティブ

Followers: 0   Following: 0

統計

Feeds

表示方法

質問


I am trying to write a matlab code to check a solved 9X9 sudoku problem. I can't seem to get it to work. Any ideas where I went wrong?
function valid = sudoku (m) valid = (size(m) == [9, 9]); if (~valid) fprintf('Sudoku: size must be 9x9\n'); ...

9年弱 前 | 1 件の回答 | 0

1

回答

質問


I am having trouble with a problem I am working on. The code works until I get to the next step which is a menu asking if the player wants to play the same game again. I can't seem to get it to loop back to the correct spot.
|i=1 while i>=1; choice = menu('Do you want to play a game?: ','yes','no') if choice == 2 error('Program wil...

9年弱 前 | 1 件の回答 | 0

1

回答