Skip to content

Commit

Permalink
Update 15puzzle.c
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-word authored Apr 26, 2017
1 parent 7d88e30 commit 00cd212
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions 15puzzle.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#include <stdio.h>

//int a[4][4]={{1,2,3,0},{4,5,6,7},{8,9,10,11},{12,13,14,15}};
//int target[4][4]={{4,1,2,3},{0,5,6,7},{8,9,10,11},{12,13,14,15}};
int a[4][4]={{1,2,3,4},{5,6,0,8},{9,10,7,11},{13,14,15,12}};
int target[4][4]={{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,0}};

Expand Down Expand Up @@ -162,4 +160,4 @@ int main()

puzzle('0');
return 0;
}
}

0 comments on commit 00cd212

Please sign in to comment.