init repo.

This commit is contained in:
2025-06-12 22:23:50 +08:00
commit 9ddcad2f08
7 changed files with 559 additions and 0 deletions

16
main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "fetcher.h"
int main(int argc, char **argv)
{
Fetcher fetcher;
if (argc != 2)
{
std::cout << "The fetcher expect the program id.";
return -1;
}
fetcher.fetchProblem(argv[1]);
return 0;
}