Guest User

Untitled

a guest
Jan 5th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. for (int i=0;i<9;i++)
  2. {
  3. for(int j=1;j<9;j++)
  4. {
  5. for (int k=0; k<9;k++)
  6. {
  7. if (g.board[i][j] != g.board[i][k])
  8. {
  9. if ((g.board[i][j] == g.board[i][k]))
  10. {
  11. return false;
  12. }
  13. }
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment