This commit is contained in:
Sombit Bose 2020-04-29 22:39:35 +05:30 committed by GitHub
parent a83e44ea6c
commit b8bcd82c26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
#include <iostream> #include <iostream>
#define n 4 #define n 4
#define inc_loop(var,start,stop,step) for(int var=start;var<=stop;var+=step) #define inc_loop(var, start, stop, step) for (int var=start; var <= stop; var+=step)
#define dec_loop(var,start,stop,step) for(int var=start;var>=stop;var-=step) #define dec_loop(var, start, stop, step) for (int var=start; var >= stop; var-=step)
void PrintSol(int Board[n][n]) void PrintSol(int Board[n][n])
{ {