diff --git a/hack_files_samples/generator.cpp b/hack_files_samples/generator.cpp index 822c227..d654083 100644 --- a/hack_files_samples/generator.cpp +++ b/hack_files_samples/generator.cpp @@ -3,18 +3,10 @@ using namespace std; int main(int argc, char* argv[]) { - srand(time(NULL)); - int test_numbers = 20; - if (argc == 2) { - test_numbers = atol(argv[1]); - } - for (int i = 0; i < test_numbers; i++) { - string file_name = "test" + to_string(i) + ".in"; - freopen(file_name.c_str(), "w", stdout); - //////////////////////////////// - //////// Your code here //////// - //////////////////////////////// - } + + //////////////////////////////// + //////// Your code here //////// + //////////////////////////////// return 0; } diff --git a/hack_files_samples/tle_generator.cpp b/hack_files_samples/tle_generator.cpp index 7fe664c..d654083 100644 --- a/hack_files_samples/tle_generator.cpp +++ b/hack_files_samples/tle_generator.cpp @@ -3,9 +3,6 @@ using namespace std; int main(int argc, char* argv[]) { -#ifdef LOCAL - freopen("test0.in", "w", stdout); -#endif //////////////////////////////// //////// Your code here ////////