Problem 213. Create a dictionary

The goal is to write a function that returns a dictionary from a list of words or phrases and their definitions. Here is an example:

>> words = {'do', 're', 'mi'};
>> definitions = {'a deer', 'a drop of golden sun', 'a name I call myself'};
>> dictionary = createDictionary(words, definitions);
>> dictionary('mi')
ans =
a name I call myself

The first and second arguments will always be cell strings but can contain any characters. The output must be a function handle.

Solution Stats

28.92% Correct | 71.08% Incorrect
Last Solution submitted on Mar 26, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers70

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!