blob: a4be93f016597c2a53dc4112d50fdfde3728864c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | /*
 * N-Queens Problem Solver
 * Found somewhere on the Internet; can't remember where. Possibly Wikipedia.
 */
#ifndef __NQUEENS_H__ 
#define __NQUEENS_H__
int nqueens(int y);
#endif /* __NQUEENS_H__ */
 |