mirror of https://github.com/dnomd343/klotski.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
233 B
11 lines
233 B
#include <iostream>
|
|
#include "all_cases.h"
|
|
|
|
int main() {
|
|
|
|
std::cout << AllCases::basic_ranges.size() << std::endl;
|
|
AllCases::build_basic_ranges();
|
|
std::cout << AllCases::basic_ranges.size() << std::endl;
|
|
|
|
return 0;
|
|
}
|
|
|