Practice · Assess · Compete — all in one
The coding platform that runs your code for real.
Practice problems, screen candidates, and host contests on a single interface — with a real Linux sandbox underneath every submission. No rate limits, no third-party throttling.
two_sum.pyAccepted · 41 ms
def two_sum(nums, target):
seen = {}
for i, n in enumerate(nums):
need = target - n
if need in seen:
return [seen[need], i]
seen[n] = i
# stdin: 2 7 11 15 / 9
# stdout: 0 1Three modes, one platform
From a quiet evening grind to a hiring loop to a 500-person contest.
Each mode is built on the same execution engine and problem bank, so authoring once means deploying everywhere.
First-class support for every language you actually write in
Python 3.8JavaScript / Node 12C++ GCC 9.2Java 13Go 1.13Rust 1.40Ruby 2.7Kotlin 1.3+52 more