Multi-threading on CodinGame?

Hey guys, is there a way to do multi-threading in JavaScript on CodinGame, like with Web Workers in browsers or child processes in Nodejs?

Short response: no.

Even if we had a way to do multithreadingg (like in Java and C++), it’s useless because we only have 1 cpu core available. And when an other player is playing, our process is entirely paused.

3 Likes