Youthful-Passion-Fruit-teambook

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub AlexanderNekrasov/Youthful-Passion-Fruit-teambook

:warning: contest/genfolders.py

Code

import os
import string
#import shutil
for f in string.ascii_uppercase:
    #shutil.rmtree(f)
    os.mkdir(f)
    os.system(f"cp main.cpp bld.py {f}")
# bld.py
import os
import sys
os.system(f"g++ -std=c++17 -g -DLOCAL -o {sys.argv[1]} {sys.argv[1]}.cpp")
Traceback (most recent call last):
  File "/home/alex/.local/lib/python3.11/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
    bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/alex/.local/lib/python3.11/site-packages/onlinejudge_verify/languages/python.py", line 96, in bundle
    raise NotImplementedError
NotImplementedError
Back to top page