Google is piloting a new coding round for L3 and L4 engineers, starting on teams like Google Cloud and Platforms & Devices. Candidates get Gemini as an in-editor assistant and are handed a multi-file codebase they’ve never seen. The task: find the bugs, add a feature inside an architecture they didn’t design, then optimize it. The round runs a full hour across those three phases.
Meta got there first. Since October 2025, one of its two coding rounds has included an AI assistant in the editor, with candidates able to choose their model: GPT, Claude, Gemini, or Llama.
Why it’s harder, not easier
Allowing AI removes the difficulty ceiling on the problems. The old format had to be solvable by a nervous human typing from scratch in 35 minutes. With an assistant available, Google can assign work that analysts tracking the pilot expect to land in “Hard” and “Hard+” territory. Candidates do more, faster, on code they didn’t write.
The scoring criteria reflect this shift. Interviewers are told to evaluate prompt engineering, output validation, and debugging AI suggestions, not the ability to produce a clever solution alone. Writing code is generative. Catching bad code is adversarial.

The number behind the format change
On April 22, 2026, Sundar Pichai stated that 75% of new code at Google is now generated by AI and approved by engineers, up from roughly half the previous fall. If three of every four lines an engineer ships are AI-generated, the old interview, which tested hand-writing solutions, was measuring a skill that no longer describes the job.
The failure mode to watch for
Candidates who bomb the new round tend to treat the AI as an oracle: prompt, get code that compiles, move on. The interviewer is watching for exactly that reflex. The signal they want is what the candidate does in the seconds after the model returns something that looks right but isn’t. AI-generated wrong answers compile cleanly and read well. They’re subtly incorrect in the one place you didn’t check.
How to prepare
- Read unfamiliar codebases. Open a mid-size open-source repo, find a real bug, fix it. That’s the new whiteboard.
- Keep DSA fundamentals sharp. You can’t validate the AI’s complexity claim without knowing Big-O. Data structures and algorithms are now your lie detector, not your main event.
- Treat the AI like a junior engineer. Prompt clearly, then review as if you’re accountable for every line.
- Narrate your judgment. Say out loud why you accept or reject each suggestion. The score lives in your reasoning, not the final code.
The format change isn’t Google going easier on candidates. It’s Google testing the job as it actually exists in 2026.
