Related Coding / DSA
Longest Run of Non-Repeating Characters
Given a string, find the length of the longest contiguous substring in which no character repeats.
Given a dictionary of words, build a structure that can efficiently count how many dictionary words start with a given prefix.
You are given a dictionary of words. Build a structure supporting countWithPrefix(prefix), which returns how many dictionary words start with the given prefix. Multiple prefix queries will be made against the same dictionary.
Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.
Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.
Continue to DashboardContinue preparing
Related Coding / DSA
Given a string, find the length of the longest contiguous substring in which no character repeats.
Related Coding / DSA
Design a structure that supports inserting numbers one at a time from a stream and efficiently reporting the median of all numbers seen so far.
Related Coding / DSA
Given a string containing round, square, and curly brackets, determine whether every bracket is properly opened and closed in the correct nested order.
Related Coding / DSA
Given one-way routes between cities each with a cost, find the cheapest total cost from a source city to a destination city using at most k intermediate stops.