diff options
| author | Matthieu <matthieu@developershouse.xyz> | 2021-10-09 14:28:09 +0400 |
|---|---|---|
| committer | Matthieu <matthieu@developershouse.xyz> | 2021-10-09 14:28:09 +0400 |
| commit | 231c5f2d7070dde28c6dec14eb84a213e7c544f6 (patch) | |
| tree | 53771cf40de7c4a4e4e529f5262331d4221a2a58 /gearing-up-for-destruction/constraints.txt | |
| parent | bba24ba988eb2dd12d16d598532ad8f869968b22 (diff) | |
add gearing up for destruction
Diffstat (limited to 'gearing-up-for-destruction/constraints.txt')
| -rw-r--r-- | gearing-up-for-destruction/constraints.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gearing-up-for-destruction/constraints.txt b/gearing-up-for-destruction/constraints.txt new file mode 100644 index 0000000..f201987 --- /dev/null +++ b/gearing-up-for-destruction/constraints.txt @@ -0,0 +1,21 @@ +Java +==== +Your code will be compiled using standard Java 8. All tests will be run by calling the solution() method inside the Solution class + +Execution time is limited. + +Wildcard imports and some specific classes are restricted (e.g. java.lang.ClassLoader). You will receive an error when you verify your solution if you have used a blacklisted class. + +Third-party libraries, input/output operations, spawning threads or processes and changes to the execution environment are not allowed. + +Your solution must be under 32000 characters in length including new lines and and other non-printing characters. + +Python +====== +Your code will run inside a Python 2.7.13 sandbox. All tests will be run by calling the solution() function. + +Standard libraries are supported except for bz2, crypt, fcntl, mmap, pwd, pyexpat, select, signal, termios, thread, time, unicodedata, zipimport, zlib. + +Input/output operations are not allowed. + +Your solution must be under 32000 characters in length including new lines and and other non-printing characters. |
