13 lines
307 B
C
13 lines
307 B
C
#ifndef MUDUO_EXAMPLES_SUDOKU_SUDOKU_H
|
|
#define MUDUO_EXAMPLES_SUDOKU_SUDOKU_H
|
|
|
|
|
|
#include "muduo/base/Types.h"
|
|
#include "muduo/base/StringPiece.h"
|
|
|
|
muduo::string solveSudoku(const muduo::StringPiece& puzzle);
|
|
const int kCells = 81;
|
|
extern const char kNoSolution[];
|
|
|
|
#endif // MUDUO_EXAMPLES_SUDOKU_SUDOKU_H
|