12 lines
171 B
C
12 lines
171 B
C
#ifndef SOLVE
|
|
#define SOLVE
|
|
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "array.h"
|
|
|
|
int t5_solve(char **arr, int n, char *s);
|
|
bool check(char *a, char *s);
|
|
|
|
#endif
|