live mode · invisible co-pilot

Your unfair advantage, on every screen.

A floating AI window that won't show up on Zoom, Meet, HackerRank, CoderPad, or any screen-share. Capture the problem with one shortcut. Get a working solution before they finish reading it.

leetly.io / interview-room / 38f1c
Problem · Medium
Two Sum

Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

# Example 1
Input: nums = [2,7,11,15], target = 9
Output: [0,1]
1def two_sum(nums, target):
2 seen = {}
3 for i, n in enumerate(nums):
4 # cursor
5 pass
STEALTH PILOT
⌘B
Screenshot queue · 3 of 5
+
+
Solution · Hash map
O(n) · one pass
Track values you've seen and what each one needs to hit target. Return the moment a complement is found.
for i, n in enumerate(nums):
if target - n in seen:
return [seen[target - n], i]
seen[n] = i
// inside live mode

Engineered for interviews, not demos.

Every feature exists because a real interview demanded it.

99% invisible window

Bypasses screen-capture APIs on macOS, Windows, Linux. Doesn't render on Zoom, Meet, Teams, OBS, Loom, or major proctoring suites.

Two-shot capture queue

One shortcut grabs the problem. Another grabs your code. Queue up to five frames before processing. Clean context, not pixel soup.

Solution with reasoning

Not an answer dump. Intuition, complexity analysis, edge cases, and a line-by-line walkthrough in your language.

Live debug

Paste a stack trace or describe what's failing mid-round. Stealth Pilot patches in place using your prior attempts as context.

Global shortcuts

Move, hide, capture, reset — every action is a global key. No clicks. No window switching. Nothing for an observer's eye to catch.

Bring your own model

OpenAI, Anthropic, Gemini. Your key, your bill, your provider. Pin a model per task.

// how it stays hidden

What they see vs. what you see.

Stealth Pilot opts out of the OS's window-capture pipeline. To screen-share, recorders, and proctoring tools, the overlay isn't there. To you, it's pinned in the corner with full focus.

interviewer's screen-share
— ONLY THE INTERVIEW UI —
your screen
// INTERVIEW UI
⌘ STEALTH PILOT
solution ready · 3 frames queued