diff options
| author | n1c00o <git.n1c00o@gmail.com> | 2021-10-09 13:37:31 +0200 |
|---|---|---|
| committer | n1c00o <git.n1c00o@gmail.com> | 2021-10-09 13:37:31 +0200 |
| commit | d86675528b7609b97a579bc1b5ce7d6b408a008f (patch) | |
| tree | 010656cb45a3446f8a54617f51a747c4947b1f36 /boom-baby/constraints.txt | |
| parent | 74ae1e903684c50587c61b3ccde06b77641b7a2c (diff) | |
| parent | 7361e0d778e4066c62015b705ad715464deae5fe (diff) | |
Merge branch 'main' of github.com:n1c00o/skipping-work into main
Diffstat (limited to 'boom-baby/constraints.txt')
| -rw-r--r-- | boom-baby/constraints.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/boom-baby/constraints.txt b/boom-baby/constraints.txt new file mode 100644 index 0000000..492c4f1 --- /dev/null +++ b/boom-baby/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.
\ No newline at end of file |
