← Software Engineering Interview Prep

Coding interview

Algorithms, data structures, and complexity — think aloud with Owl.

Session mode

LearnOwl teaches — full explanations, whiteboard, one question at a time.InterviewYou answer — Owl asks; toggle the expected answer on or off.Rapid fireShort prompts, quick scoring, keep moving.

Questions

🧩

Two Sum

EasyTopics

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

Start · interview
🧩

Longest Substring Without Repeating Characters

MediumTopics

Given a string s, find the length of the longest substring without repeating characters.

Start · interview
🧩

Merge Intervals

MediumTopics

Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals and return an array of

Start · interview
🧩

Binary Tree Level Order Traversal

MediumTopics

Given the root of a binary tree, return the level order traversal of its nodes' values (from left to right, level by lev

Start · interview
🧩

Number of Islands

MediumTopics

Given an m x n 2D binary grid which represents a map of '1's (land) and '0's (water), return the number of islands. An i

Start · interview