|
|
|
|
|
by jakubw
5235 days ago
|
|
The Python version seems to be using an interpreter that frankly just doesn't work: x = [1, 5, 3, 2, 6, 4]
x.sort()
print x
Output: [1, 3, 2, 4, 5, 6]
Not to mention the incomplete standard library. I'm not sure what is the interpreter they're using but it's actually not that hard to sandbox the CPython one and disable certain functions/modules if necessary. |
|