an exam-grade coding platform
parikshanपरीक्षण
practice. proctored. progressive.
One question. Thirty minutes. Real proctoring. Honest feedback that turns each attempt into a learning event.
By signing in you accept proctoring telemetry collection during sessions. India residency, 90-day retention.
INTEGRITY 9828:14Saved 2s ago
# two-sum.py
def two_sum(nums, target):
seen = {}
for i, n in enumerate(nums):
comp = target - n
if comp in seen:
return [seen[comp], i]
seen[n] = i
PASS test/3
PASS test/7
PASS test/12
How it works
One question. Thirty minutes. Total focus. Then a coaching report, not a verdict screen.
01
Pick a problem
Curated questions with public tests, hidden tests, and a hint ladder. Difficulty matches your skill graph.
02
Code with proctoring
Fullscreen, telemetry on, paste detection, integrity score live. The clock is real. The session is honest.
03
Learn from every attempt
Verdict, complexity, edge-case coverage, mistake taxonomy, calibration. Every line clickable to fix.