Guest User

Untitled

a guest
Nov 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. int match(int d)
  2. {
  3. int i,int j,check=0;
  4. for(i=0;i<d;i++)
  5. {
  6. for(j=0;j<d;j++)
  7. {
  8. if(initial[i][j]!=final[i][j])
  9. {
  10. check=0;
  11. break;
  12. }
  13. }
  14. }
  15. return check;
  16. }
Add Comment
Please, Sign In to add comment