Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
#include <stdio.h> | |
#define N 9 | |
#define UNASSIGNED 0 | |
int is_exist_row(int grid[N][N], int row, int num){ | |
for (int col = 0; col < 9; col++) { | |
if (grid[row][col] == num) { | |
return 1; | |
} |