$put_perv_real = "/home/www/dvakompa-ru/dopol/"; ?>
Очень продуманная игра судоку. Вы можете скачать это здесь. У меня были небольшие проблемы с компиляцией для моего Raspberry Pi (см. Ниже).
A very elaborated sudoku game. You can download it here. I had a little trouble compiling it for my Raspberry Pi (see below).
The display was initially weird and the game was not playable; I had to add the signed keyword in two locations:
In the file called gen.c:
extern signed char grid_data[9][9];
and in the file called nsuds.c:
signed char grid_data[9][9]={{0}}; /* grid_data[y/row][x/col] */