9 lines
131 B
C
9 lines
131 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include "maze.h"
|
||
|
#include <assert.h>
|
||
|
|
||
|
int solve_maze(char* maze,int size){
|
||
|
return 0;
|
||
|
}
|