|
@ -1,8 +1,6 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h> |
|
|
#include <stdio.h> |
|
|
#include <stdlib.h> |
|
|
#include <stdlib.h> |
|
|
#include <stdbool.h> |
|
|
#include <stdbool.h> |
|
@ -50,7 +48,9 @@ void startSudoku() { |
|
|
|
|
|
|
|
|
void availableLevelsFunction(int difficulty) { |
|
|
void availableLevelsFunction(int difficulty) { |
|
|
printf("\nAvailable Levels for Difficulty %d:\n", difficulty); |
|
|
printf("\nAvailable Levels for Difficulty %d:\n", difficulty); |
|
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < LEVEL_NUMBER; i++) { |
|
|
|
|
|
printf("%d. Level %d\n", i + 1, i + 1); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
int main(){ |
|
|
int main(){ |
|
|