thecrood / Daily-Coding-Problem-22

Daily Coding Problem Challenge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Daily-Coding-Problem-22

Daily Coading Problem Challenge

This problem was asked by Microsoft.

Given a dictionary of words and a string made up of those words (no spaces), return the original sentence in a list. If there is more than one possible reconstruction, return any of them. If there is no possible reconstruction, then return null.

For example, given the set of words 'quick', 'brown', 'the', 'fox', and the string "thequickbrownfox", you should return ['the', 'quick', 'brown', 'fox'].

Given the set of words 'bed', 'bath', 'bedbath', 'and', 'beyond', and the string "bedbathandbeyond", return either ['bed', 'bath', 'and', 'beyond] or ['bedbath', 'and', 'beyond'].

About

Daily Coding Problem Challenge

License:MIT License


Languages

Language:Jupyter Notebook 100.0%