This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
vercel.json | |
{ | |
"version": 2, | |
"builds": [ | |
{ | |
"src": "myweb/wsgi.py", | |
"use": "@vercel/python", | |
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" } | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.hackerrank.com/contests/xpsc-club-preliminary-contest-a-batch-03/challenges | |
commands : | |
"C_Cpp.default.cppStandard": "c++20", | |
"C_Cpp.default.cStandard": "c11", | |
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt.exe && timeout 15s $dir$fileNameWithoutExt.exe <input.txt> output.txt || (echo -n > output.txt && echo 'Time limit is over')", | |
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt.exe && timeout 15s $dir$fileNameWithoutExt.exe <input.txt> output.txt || (echo -n > output.txt && echo 'Time limit is over')" | |