Created
January 27, 2014 02:58
-
-
Save bambuchaAdm/8642644 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // (..) | |
| int hinty[25]; | |
| gimme_hint(tablica,&hinty); | |
| render(size,hinty,kur_x, kur_y); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| void gimme_hint(int current_board[5][5], int ** result ) | |
| { | |
| int current_state[23]; | |
| int hint_vector[25]; | |
| int * best = *result; | |
| int next[25]; | |
| int i,j; | |
| //whatever | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment