JUST LAUNCHED, BE ONE OF THE FIRST USERS

Practice the coding interview.
Not just the algorithm.

An AI interviewer that pushes back, runs your code against hidden test cases, and tells you honestly if you would get hired.

See how it works →
session.config
Alex · AI Interviewer
CONFIGURING YOUR INTERVIEW
R
Role
New Grad Software Engineer
D
Difficulty
Easy
T
Duration
45m
C
Company · optional
Google
J
Job Description · optional
Pasted from posting
N
Additional Notes · optional
Notes added
Two Sum
Detected topic: Arrays
Analyzing role and difficulty
0%
GoogleEasy · Arrays

Two Sum

Given an array of integers, return indices of the two numbers that add up to a specific target. You may assume each input has exactly one solution.

Input  nums = [2,7,11,15], target = 9
Output [0,1]
solution.pyPython 3
▶ Run Code
Submit
1def two_sum(nums, target):
2  for i in range(len(nums)):
3    for j in range(i+1, len(nums)):
4      if nums[i] + nums[j] == target:
5        return [i, j]
1def two_sum(nums, target):
2  seen = {}
3  for i, n in enumerate(nums):
4    if target - n in seen:
5      return [seen[target-n], i]
6    seen[n] = i
Console
Running hidden test cases
0%

YOUR APPROACH Brute-force nested loop, rewritten as a single-pass O(n) hash map.

What went well
  • Optimized to O(n) after a nudge
  • Traced through edge cases well
Areas to improve
  • Missed the empty-input case
Communication
Explained approach
Asked clarifying questions
Thought out loud
Code quality
Time O(n)Space O(n)Good cleanliness
Hiring recommendation
Hire

Strong grasp of the hash-map optimization and clear communication throughout the walkthrough.

This recommendation is based on this coding interview only and does not represent a complete hiring decision.

Next steps
  • State time/space complexity before coding
  • Default to handling empty/edge-case inputs

Practice for interviews at

GoogleMetaAmazonMicrosoftAppleStartupsGoogleMetaAmazonMicrosoftAppleStartups

How it works

From pick to verdict in one sitting

01

Pick your interview

Choose the company style, role, topic, and difficulty. Google, Meta, Amazon, whatever you need.

02

Code with AI

Talk through your approach and write real code while your AI interviewer asks the follow-ups a real one would.

03

Get your verdict

See exactly which hidden test cases passed, how you communicated, and what to fix before the real thing.

FEATURES

Everything a real interview loop has

AI interviewer that pushes back

A chat-driven interviewer that asks follow-up questions and reacts in real time to your code and reasoning. It's not just a static prompt box.

Real code execution and grading

Your solution runs against real test cases, including hidden ones, in a sandboxed runtime. No guessing whether it actually works.

Company specific problems

The problems and the interviewer's tone shift to match whichever company you're prepping for.

Timed interview simulation

Every interview runs on a real countdown, no hints unless you ask, and the pressure of the real thing.

Detailed feedback reports

Every session ends with a real breakdown, not just pass or fail: correctness, complexity, approach, and how you communicated.

Progress tracking

See your score trend across sessions and know exactly which skill is holding your offer back.

I built LiveCodePrep because I kept meeting developers who could nail the algorithm but froze the second an interviewer said walk me through your thinking. That's exactly what this fixes: realistic practice, honest feedback, zero fluff.

SK

Saran

Founder

PRICING

Simple pricing, serious upside

MonthlyAnnualSave 35%

Free

Get a feel for the platform.

$0

  • 2 interviews / day
  • 20 messages per interview
  • Core feedback reports

Pro

MOST POPULAR

For serious interview prep.

$49/mo

  • Unlimited interviews
  • Unlimited chat with the interviewer
  • Full session history
  • Priority feedback generation
  • Company-specific problem sets

Voice

COMING SOON

The closest thing to a real onsite.

$79/mo

  • Everything in Pro
  • Live spoken conversation with the interviewer
  • Real-time verbal follow-up questions
  • Vocal delivery & clarity feedback
FAQ

Questions, answered

Your code runs against real test cases, including hidden ones you can't see, in a sandboxed environment. The AI interviewer also grades how you approached it and communicated, so you get an actual verdict, not just a chat log.

Google, Meta, Amazon, Microsoft, Apple, and general startup-style interviews. The interviewer's tone, pacing, and follow-up style adapt to match your pick.

Nope. Everything runs right in your browser: the code editor, the execution sandbox, and the AI interviewer are all built in.

You can wait for tomorrow's reset, or upgrade to Pro for unlimited interviews and full history.

Yep. Pro is month-to-month with no lock-in. Cancel from your account settings whenever you want.

Voice is a planned tier, not available yet: a live, spoken conversation with your AI interviewer instead of typed chat, plus feedback on how you sounded, not just what you said, on top of everything in Pro. Join the waitlist to get notified when it ships.

Your next interview is closer than you think

Start free. No card, no commitment. Just the closest thing to a real interview you'll find outside of an actual one.