← Back to Directory

read.ai

Small

Read.ai is a technology company that provides AI-powered meeting assistant software, offering real-time transcription, summaries, analytics, and engagement insights for video calls and meetings. It is known for integrating with platforms like Zoom, Google Meet, and Microsoft Teams to improve meeting productivity.

3 interview notes · updated Jul 2026

read.ai·Software Engineer·Technical Phone Screen

Jul 2026
Read.Ai coding screen, one question the whole time: build a rate limiter. Felt straightforward at first but the rolling window detail tripped me up more than I expected.
  • Design and implement a rate limiter class that supports per-user request limits using a rolling time window. The class should expose a constructor taking a max request count and window size in seconds, and an allow method that takes a user ID and timestamp and returns whether the request should be permitted.

“My first instinct was a fixed window and I almost went with it before catching myself.”

View Post

read.ai·Software Engineer·Technical Phone Screen

Jun 2026
Got a coding question from read.ai that was basically a graph/union-find problem dressed up as a sentence similarity check. Pretty classic algorithmic interview, nothing too surprising about the format.
  • Given two sentence arrays and a list of similar word pairs where similarity is transitive, determine if the two sentences are similar (same length, each corresponding word pair is identical or in the same similarity group).

“The transitivity part is what makes this tricky.”

View Post

read.ai·Software Engineer·Technical Phone Screen

May 2026
Got a coding question from read.ai that was basically a string similarity problem. Pretty standard algorithmic stuff, nothing too wild, but the edge cases are where it gets you.
  • Given two sentences as arrays of words and a list of similar word pairs, determine if the two sentences are similar. Sentences are similar if they're the same length and every pair of corresponding words is either identical or listed as similar (similarity is not transitive, and order within a pair doesn't matter).

“I jumped straight to coding before fully thinking through the edge cases.”

View Post