Add problems URL again.

My last commit removed them for some reason...
This commit is contained in:
Segcolt 2024-11-10 13:50:47 -03:00
parent 40e91c0226
commit 8728b9c5da
3 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,8 @@ return {
end end
end, end,
testcases_use_single_file = true, testcases_use_single_file = true,
evaluate_template_modifiers = true,
received_problems_prompt_path = false,
compile_command = { compile_command = {
c = { exec = "gcc", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } }, c = { exec = "gcc", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } },
cpp = { exec = "g++", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } }, cpp = { exec = "g++", args = { "-Wall", "-g", "-DDEBUG", "-fsanitize=address,undefined", "-std=c++17", "$(FNAME)", "-o", "$(FNOEXT).out" } },

View File

@ -1,3 +1,5 @@
/* Problem URL: $(URL) */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <math.h> #include <math.h>

View File

@ -1,3 +1,5 @@
/* Problem URL: $(URL) */
#include <bits/stdc++.h> #include <bits/stdc++.h>
using namespace std; using namespace std;