← Back to Directory

OtterAI

Small

Otter.ai is a technology company that provides AI-powered transcription and meeting note-taking software. It is known for automatically generating real-time transcripts, summaries, and action items for meetings across platforms like Zoom, Google Meet, and Microsoft Teams.

6 interview notes · updated Jul 2026

OtterAI·Software Engineer·Technical Phone Screen

Jun 2026
Interviewed for a software engineer role at OtterAI and got hit with LeetCode 227, the basic calculator problem with operators and no parentheses. Pretty standard coding round, nothing too surprising.
  • Implement a basic calculator that evaluates a string expression containing non-negative integers, plus, minus, multiply, and divide operators (integer division), with possible spaces.

“Stack-based approach is the move here.”

View Post

OtterAI·Software Engineer·Technical Phone Screen

Jun 2026
Technical phone screen for a Software Engineer role at OtterAI. The whole thing was basically one meaty coding problem around password validation, which sounds boring on paper but had enough moving parts to keep me on my toes. They wanted implementation, complexity analysis, and self-written unit tests all in one go.
  • Implement a password validation function that accepts a password string and a configurable rule set, returning whether the password is valid and which specific rules failed. Rules include minimum length, forbidden characters, a per-character repeat limit, uppercase/lowercase requirements, and a configurable special character set.
  • For each rule in your implementation, explain the time and space complexity.
  • Write your own unit tests covering minimum length boundary conditions, each forbidden character, the 4th versus 5th occurrence of a repeated character, missing each character class, and a fully valid password.

“I started with the linear scan plus a frequency map approach, which they seemed fine with.”

View Post

OtterAI·Software Engineer·Technical Phone Screen

Jun 2026
A project presentation round at OtterAI for a software engineer role where you basically talk for 3-5 minutes straight about past work with no back-and-forth from the interviewer.
  • Walk through one or two of your most relevant past projects in a structured presentation covering the problem context, your specific role and technical decisions, the architecture or approach, and the measurable outcome.

“The no-follow-up thing is what makes this format weirdly stressful.”

View Post

OtterAI·Software Engineer·Hiring Manager Screen

Jun 2026
Did a project deep dive for a Software Engineer role at OtterAI and got rejected with zero useful feedback. The whole thing felt fine from my end, which somehow made it worse.
  • Walk me through a project you've worked on in depth.

“I thought it went well.”

View Post

OtterAI·Software Engineer·Technical Phone Screen

May 2026
Coding round at OtterAI for a software engineer role. One LeetCode problem with a follow-up that only needed a verbal walkthrough, no actual coding required.
  • Solve LeetCode problem 227 (Basic Calculator II).
  • How would you extend your solution to handle parentheses? (verbal explanation only, no coding required)

“Standard stack problem.”

View Post

OtterAI·Software Engineer·Technical Phone Screen

Apr 2026
Did a technical screen for a Software Engineer role at OtterAI. The main question was fine but the follow-up was a harder calculator problem and I ran out of time, ended up just writing pseudo code which felt pretty rough.
  • Implement a basic calculator that supports nested expressions, including parentheses and all four arithmetic operators.

“Ran out of time and resorted to pseudo code.”

View Post