leetcode-cpp/main.cpp
2025-06-12 22:23:50 +08:00

16 lines
239 B
C++

#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;
}