thecrood / Daily-Coding-Problem-11

Daily Coding Problem Challenge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Daily-Coding-Problem-11

This problem was asked by Twitter.

Implement an autocomplete system. That is, given a query string s and a set of all possible query strings, return all strings in the set that have s as a prefix.

For example, given the query string de and the set of strings [dog, deer, deal], return [deer, deal].

Hint: Try preprocessing the dictionary into a more efficient data structure to speed up queries.

About

Daily Coding Problem Challenge

License:MIT License


Languages

Language:Jupyter Notebook 100.0%