File: nqueens.h

package info (click to toggle)
hardinfo 0.5.1-1.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,148 kB
  • ctags: 1,212
  • sloc: ansic: 12,199; sh: 199; makefile: 120
file content (13 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (6)
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__ */