Skip to content

khdkhd/hashcode-2020-qualification

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hashcode-2020-qualification

Book scanning problem

How to add a solver

To add a solver named foo to the project follow these steps:

  1. Create the file cpp/solvers/foo.cpp folder,
  2. Copy paste the following lines
#include <books.hpp>

Solver fooSolver([](Problem &problem, const Options &) {
    Solution solution;

    // YOUR SOLVER IMPLEMENTATION HERE

    return solution;
});